Searched refs:randomDouble (Results 1 – 7 of 7) sorted by relevance
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | NumberFormatRoundTripTest.java | 85 public double randomDouble(double range) { in randomDouble() method in NumberFormatRoundTripTest 112 _test(fmt, randomDouble(1)); in _test() 114 _test(fmt, randomDouble(10000)); in _test() 116 _test(fmt, Math.floor((randomDouble(10000)))); in _test() 118 _test(fmt, randomDouble(1e50)); in _test() 120 _test(fmt, randomDouble(1e-50)); in _test() 122 _test(fmt, randomDouble(1e100)); in _test() 124 _test(fmt, randomDouble(1e75)); in _test() 126 _test(fmt, randomDouble(1e308) / ((DecimalFormat) fmt).getMultiplier()); in _test() 128 _test(fmt, randomDouble(1e75) / ((DecimalFormat) fmt).getMultiplier()); in _test() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | nmfmtrt.cpp | 79 NumberFormatRoundTripTest::randomDouble(double range) in randomDouble() function in NumberFormatRoundTripTest 165 test(fmt, randomDouble(1)); in test() 166 test(fmt, randomDouble(10000)); in test() 167 test(fmt, uprv_floor((randomDouble(10000)))); in test() 168 test(fmt, randomDouble(1e50)); in test() 169 test(fmt, randomDouble(1e-50)); in test() 171 test(fmt, randomDouble(1e100)); in test() 173 test(fmt, randomDouble(1e75)); in test() 190 test(fmt, randomDouble(DBL_MAX/2.0) / df->getMultiplier()); in test() 192 test(fmt, randomDouble(1e75) / df->getMultiplier()); in test() [all …]
|
D | winnmtst.cpp | 81 static double randomDouble(void) in randomDouble() function 234 double d = randomDouble(); in testLocale()
|
D | nmfmtrt.h | 43 static double randomDouble(double range);
|
/external/guava/guava-tests/benchmark/com/google/common/math/ |
D | DoubleMathRoundingBenchmark.java | 21 import static com.google.common.math.MathBenchmarking.randomDouble; 47 doubleInIntRange[i] = randomDouble(Integer.SIZE - 2); in setUp() 48 doubleInLongRange[i] = randomDouble(Long.SIZE - 2); in setUp()
|
D | DoubleMathBenchmark.java | 22 import static com.google.common.math.MathBenchmarking.randomDouble; 42 doubles[i] = randomDouble(Long.SIZE); in setUp()
|
/external/guava/guava-tests/test/com/google/common/math/ |
D | MathBenchmarking.java | 63 static double randomDouble(int maxExponent) { in randomDouble() method in MathBenchmarking 75 return Math.exp(randomDouble(6)); in randomPositiveDouble()
|