Home
last modified time | relevance | path

Searched refs:dUserValue (Results 1 – 7 of 7) sorted by relevance

/external/parameter-framework/upstream/parameter/
DFloatingPointParameterType.cpp235 double dUserValue, uint32_t &uiValue, CParameterAccessContext &parameterAccessContext) const in toBlackboard() argument
237 if (!checkValueAgainstRange(dUserValue)) { in toBlackboard()
244 float fValue = static_cast<float>(dUserValue); in toBlackboard()
249 bool CFloatingPointParameterType::fromBlackboard(double &dUserValue, uint32_t uiValue, in fromBlackboard() argument
255 dUserValue = fValue; in fromBlackboard()
DIntegerParameterType.cpp276 bool CIntegerParameterType::toBlackboard(double dUserValue, uint32_t &uiValue, in toBlackboard() argument
285 return base::toBlackboard(dUserValue, uiValue, parameterAccessContext); in toBlackboard()
289 int64_t iConvertedValue = pParameterAdaption->fromUserValue(dUserValue); in toBlackboard()
316 bool CIntegerParameterType::fromBlackboard(double &dUserValue, uint32_t uiValue, in fromBlackboard() argument
325 return base::fromBlackboard(dUserValue, uiValue, parameterAccessContext); in fromBlackboard()
344 dUserValue = pParameterAdaption->toUserValue(iValueToConvert); in fromBlackboard()
DFixedPointParameterType.cpp231 bool CFixedPointParameterType::toBlackboard(double dUserValue, uint32_t &uiValue, in toBlackboard() argument
235 if (!checkValueAgainstRange(dUserValue)) { in toBlackboard()
244 int32_t iData = doubleToBinaryQnm(dUserValue); in toBlackboard()
254 bool CFixedPointParameterType::fromBlackboard(double &dUserValue, uint32_t uiValue, in fromBlackboard() argument
265 dUserValue = binaryQnmToDouble(iData); in fromBlackboard()
DFloatingPointParameterType.h51 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue,
53 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
DFixedPointParameterType.h60 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue,
62 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
DIntegerParameterType.h67 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue,
69 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
DParameterType.h85 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue,
87 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,