HomeSort by relevance Sort by last modified time
    Searched refs:dValue (Results 1 - 25 of 50) sorted by null

1 2

  /external/parameter-framework/upstream/parameter/
LinearParameterAdaptation.h 43 virtual int64_t fromUserValue(double dValue) const;
LogarithmicParameterAdaptation.h 56 virtual int64_t fromUserValue(double dValue) const;
ParameterAdaptation.h 48 virtual int64_t fromUserValue(double dValue) const;
LinearParameterAdaptation.cpp 82 int64_t CLinearParameterAdaptation::fromUserValue(double dValue) const
84 return base::fromUserValue(dValue * _dSlopeNumerator / _dSlopeDenominator);
ParameterAdaptation.cpp 76 int64_t CParameterAdaptation::fromUserValue(double dValue) const
78 return (int64_t)dValue + _iOffset;
FixedPointParameterType.h 134 bool checkValueAgainstRange(double dValue) const;
140 * @param[in] dValue the double which should be converted.
144 int32_t doubleToBinaryQnm(double dValue) const;
FloatingPointParameterType.cpp 243 // Cast is fine because dValue has been checked against the value range
259 bool CFloatingPointParameterType::checkValueAgainstRange(double dValue) const
261 // Check that dValue can safely be cast to a float
263 if ((dValue < -std::numeric_limits<float>::max()) ||
264 (dValue > std::numeric_limits<float>::max())) {
268 return checkValueAgainstRange(static_cast<float>(dValue));
FloatingPointParameterType.h 82 * @param[in] dValue the user interpreted value (as double)
85 bool checkValueAgainstRange(double dValue) const;
FixedPointParameterType.cpp 332 bool CFixedPointParameterType::checkValueAgainstRange(double dValue) const
338 return (dValue <= dMax) && (dValue >= dMin);
342 int32_t CFixedPointParameterType::doubleToBinaryQnm(double dValue) const
345 int32_t iData = static_cast<int32_t>(round(dValue * double(1UL << _uiFractional)));
Parameter.cpp 134 bool CParameter::access(double &dValue, bool bSet,
137 return doAccess(dValue, bSet, parameterAccessContext);
Parameter.h 67 bool access(double &dValue, bool bSet,
BaseParameter.h 72 virtual bool access(double &dValue, bool bSet,
  /libcore/ojluni/src/main/java/sun/misc/
FormattedFloatingDecimal.java     [all...]
  /libcore/ojluni/src/main/java/java/lang/
FloatingDecimal.java     [all...]
  /external/guava/guava/src/com/google/common/primitives/
UnsignedLong.java 215 double dValue = (double) (value & UNSIGNED_MASK);
217 dValue += 0x1.0p63;
219 return dValue;
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_utils_imp.cpp 383 FX_DOUBLE dValue = (dwFractional / 4294967296.0);
384 dValue = nIntegral + (nIntegral >= 0 ? dValue : -dValue);
386 dValue *= FXSYS_pow(10, (FX_FLOAT)nExponent);
388 return dValue;
xfa_localevalue.cpp 349 FX_DOUBLE dValue = (dwFractional / 4294967296.0);
350 dValue = nIntegral + (nIntegral >= 0 ? dValue : -dValue);
352 dValue *= FXSYS_pow(10, (FX_FLOAT)nExponent);
354 return dValue;
  /external/replicaisland/src/com/replica/replicaisland/
SliderPreference.java 98 int dValue = (int)ta.getInt(index, INITIAL_VALUE);
100 return (int)Utils.clamp(dValue, 0, MAX_SLIDER_VALUE);
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/demos/
FFConsoleDemo.cpp 85 virtual void setValue(double dValue) { _dValue = dValue; }
103 virtual void setValue(double dValue) { }
120 virtual void setValue(double dValue)
122 _dValue = dValue;
151 double dValue = getValue() + _dDeltaValue;
152 if (dValue > _dMaxValue)
154 dValue = _dMaxValue;
158 else if (dValue < _dMinValue)
160 dValue = _dMinValue
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 945 double dValue = atof(strValue);
947 dValue += DOUBLE_CORRECT;
952 strValue = fcvt(dValue, iDec, &iDec2, &iNegative);
954 dValue = 0;
955 strValue = fcvt(dValue, iDec, &iDec2, &iNegative);
1233 double dValue = atof(strValue);
1234 dValue *= 100;
1236 dValue += DOUBLE_CORRECT;
    [all...]
JS_Value.cpp 47 CJS_Value::CJS_Value(CJS_Runtime* pRuntime, const double& dValue)
49 operator=(dValue);
162 void CJS_Value::operator=(double dValue) {
163 m_pValue = FXJS_NewNumber(m_pJSRuntime->GetIsolate(), dValue);
312 void CJS_PropValue::operator<<(double dValue) {
314 CJS_Value::operator=(dValue);
317 void CJS_PropValue::operator>>(double& dValue) const {
319 dValue = CJS_Value::ToDouble();
JS_Value.h 36 CJS_Value(CJS_Runtime* pRuntime, const double& dValue);
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_fm2jscontext.cpp 241 FX_DOUBLE dValue = HValueToDouble(hThis, argOne);
242 if (dValue < 0) {
243 dValue = -dValue;
245 FXJSE_Value_SetDouble(args.GetReturnValue(), dValue);
460 FX_DOUBLE dValue = HValueToDouble(hThis, newPropertyValue);
461 if (dMaxValue < dValue) {
462 dMaxValue = dValue;
479 FX_DOUBLE dValue = HValueToDouble(hThis, newPropertyValue);
480 if (dMaxValue < dValue) {
    [all...]
  /external/pdfium/fpdfsdk/include/jsapi/
fxjs_v8.h 206 double dValue);
  /external/pdfium/fpdfsdk/src/jsapi/
fxjs_v8.cpp 614 double dValue) {
619 v8::Number::New(pIsolate, (double)dValue)).FromJust();

Completed in 626 milliseconds

1 2