Searched refs:randomDouble (Results 1 – 8 of 8) sorted by relevance
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | NumberFormatRoundTripTest.java | 90 public double randomDouble(double range) { in randomDouble() method in NumberFormatRoundTripTest 117 _test(fmt, randomDouble(1)); in _test() 119 _test(fmt, randomDouble(10000)); in _test() 121 _test(fmt, Math.floor((randomDouble(10000)))); in _test() 123 _test(fmt, randomDouble(1e50)); in _test() 125 _test(fmt, randomDouble(1e-50)); in _test() 127 _test(fmt, randomDouble(1e100)); in _test() 129 _test(fmt, randomDouble(1e75)); in _test() 131 _test(fmt, randomDouble(1e308) / ((DecimalFormat) fmt).getMultiplier()); in _test() 133 _test(fmt, randomDouble(1e75) / ((DecimalFormat) fmt).getMultiplier()); in _test() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | NumberFormatRoundTripTest.java | 93 public double randomDouble(double range) { in randomDouble() method in NumberFormatRoundTripTest 120 _test(fmt, randomDouble(1)); in _test() 122 _test(fmt, randomDouble(10000)); in _test() 124 _test(fmt, Math.floor((randomDouble(10000)))); in _test() 126 _test(fmt, randomDouble(1e50)); in _test() 128 _test(fmt, randomDouble(1e-50)); in _test() 130 _test(fmt, randomDouble(1e100)); in _test() 132 _test(fmt, randomDouble(1e75)); in _test() 134 _test(fmt, randomDouble(1e308) / ((DecimalFormat) fmt).getMultiplier()); in _test() 136 _test(fmt, randomDouble(1e75) / ((DecimalFormat) fmt).getMultiplier()); in _test() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | nmfmtrt.cpp | 82 NumberFormatRoundTripTest::randomDouble(double range) in randomDouble() function in NumberFormatRoundTripTest 168 test(fmt, randomDouble(1)); in test() 169 test(fmt, randomDouble(10000)); in test() 170 test(fmt, uprv_floor((randomDouble(10000)))); in test() 171 test(fmt, randomDouble(1e50)); in test() 172 test(fmt, randomDouble(1e-50)); in test() 174 test(fmt, randomDouble(1e100)); in test() 176 test(fmt, randomDouble(1e75)); in test() 193 test(fmt, randomDouble(DBL_MAX/2.0) / df->getMultiplier()); in test() 195 test(fmt, randomDouble(1e75) / df->getMultiplier()); in test() [all …]
|
D | winnmtst.cpp | 86 static double randomDouble(void) in randomDouble() function 239 double d = randomDouble(); in testLocale()
|
D | nmfmtrt.h | 45 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 | 109 static double randomDouble(int maxExponent) { in randomDouble() method in MathBenchmarking 123 return Math.exp(randomDouble(6)); in randomPositiveDouble()
|