Searched refs:dUserValue (Results 1 – 7 of 7) sorted by relevance
/external/parameter-framework/upstream/parameter/ |
D | FloatingPointParameterType.cpp | 235 double dUserValue, uint32_t &uiValue, CParameterAccessContext ¶meterAccessContext) 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()
|
D | IntegerParameterType.cpp | 276 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()
|
D | FixedPointParameterType.cpp | 231 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()
|
D | FloatingPointParameterType.h | 51 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue, 53 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
|
D | FixedPointParameterType.h | 60 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue, 62 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
|
D | IntegerParameterType.h | 67 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue, 69 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
|
D | ParameterType.h | 85 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue, 87 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,
|