Home
last modified time | relevance | path

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

/external/fastrpc/src/
Dstd_dtoa.c139 double dResult = dNumber; in fp_round() local
144 dResult = dNumber - dRoundingFactor; in fp_round()
148 dResult = dNumber + dRoundingFactor; in fp_round()
151 return dResult; in fp_round()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dfrontend.h157 double dResult = (double)result; in calcDeterminantInt() local
158 dResult = dResult * (1.0 / FIXED_POINT16_SCALE); in calcDeterminantInt()
160 return (float)dResult; in calcDeterminantInt()
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp2690 double dResult = 0; in FV() local
2696 dResult = nAmount * (nTemp - 1) / nRate; in FV()
2698 dResult = nAmount * nPeriod; in FV()
2701 args.GetReturnValue()->SetDouble(dResult); in FV()
3447 double dResult = 0; in UnitValue() local
3450 dResult = dFirstNumber * 25.4; in UnitValue()
3452 dResult = dFirstNumber * 2.54; in UnitValue()
3454 dResult = dFirstNumber / 72; in UnitValue()
3456 dResult = dFirstNumber / 72000; in UnitValue()
3458 dResult = dFirstNumber; in UnitValue()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DNumberRegressionTests.java1728 double dResult = f.parse("99.99").doubleValue(); in Test4243108() local
1729 if (dResult == 99.99) { in Test4243108()
1730 logln("OK: got " + dResult); in Test4243108()
1732 errln("FAIL: got " + dResult); in Test4243108()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberRegressionTests.java1725 double dResult = f.parse("99.99").doubleValue(); in Test4243108() local
1726 if (dResult == 99.99) { in Test4243108()
1727 logln("OK: got " + dResult); in Test4243108()
1729 errln("FAIL: got " + dResult); in Test4243108()
/external/zstd/programs/
Dbenchzstd.c476 { BMK_runTime_t const dResult = BMK_extract_runTime(dOutcome); in BMK_benchMemAdvancedNoAlloc() local
477 … U64 const newDSpeed = (U64)((double)srcSize * TIMELOOP_NANOSEC / dResult.nanoSecPerRun); in BMK_benchMemAdvancedNoAlloc()
/external/pdfium/fxjs/
Dcjs_publicmethods.cpp1350 Optional<double> dResult = in AFSimple_Calculate() local
1352 if (!dResult.has_value()) in AFSimple_Calculate()
1355 dValue = dResult.value(); in AFSimple_Calculate()