OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toUserValue
(Results
1 - 7
of
7
) sorted by null
/external/parameter-framework/upstream/parameter/
LinearParameterAdaptation.h
44
virtual double
toUserValue
(int64_t iValue) const;
LogarithmicParameterAdaptation.h
51
* Let f=fromUserValue and f'=
toUserValue
57
virtual double
toUserValue
(int64_t iValue) const;
ParameterAdaptation.h
49
virtual double
toUserValue
(int64_t iValue) const;
LinearParameterAdaptation.cpp
87
double CLinearParameterAdaptation::
toUserValue
(int64_t iValue) const
89
return base::
toUserValue
(iValue) * _dSlopeDenominator / _dSlopeNumerator;
LogarithmicParameterAdaptation.cpp
82
double CLogarithmicParameterAdaptation::
toUserValue
(int64_t iValue) const
84
return exp(base::
toUserValue
(iValue) * log(_dLogarithmBase));
ParameterAdaptation.cpp
81
double CParameterAdaptation::
toUserValue
(int64_t iValue) const
IntegerParameterType.cpp
344
dUserValue = pParameterAdaption->
toUserValue
(iValueToConvert);
Completed in 72 milliseconds