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.h172 bool toBlackboard(double dUserValue, uint32_t &uiValue, in toBlackboard() argument
181 return Base::toBlackboard(dUserValue, uiValue, parameterAccessContext); in toBlackboard()
185 int64_t iConvertedValue = pParameterAdaption->fromUserValue(dUserValue); in toBlackboard()
236 bool fromBlackboard(double &dUserValue, uint32_t uiValue, in fromBlackboard() argument
245 return Base::fromBlackboard(dUserValue, uiValue, parameterAccessContext); in fromBlackboard()
264 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()
DBaseIntegerParameterType.h56 bool fromBlackboard(double &dUserValue, uint32_t uiValue, in fromBlackboard() argument
59 return CParameterType::fromBlackboard(dUserValue, uiValue, parameterAccessContext); in fromBlackboard()
DFloatingPointParameterType.h52 bool toBlackboard(double dUserValue, uint32_t &uiValue,
54 bool fromBlackboard(double &dUserValue, uint32_t uiValue,
DFixedPointParameterType.h61 bool toBlackboard(double dUserValue, uint32_t &uiValue,
63 bool fromBlackboard(double &dUserValue, uint32_t uiValue,
DParameterType.h86 virtual bool toBlackboard(double dUserValue, uint32_t &uiValue,
88 virtual bool fromBlackboard(double &dUserValue, uint32_t uiValue,