Searched refs:nextUp (Results 1 – 8 of 8) sorted by relevance
/libcore/luni/src/test/resources/ |
D | math_java_only.csv | 123 nextUp,-0x1.8ec3beb2d4184p1023,-0x1.8ec3beb2d4185p1023 124 nextUp,-0x1.a49ea827e7d04p1023,-0x1.a49ea827e7d05p1023 125 nextUp,-0x1.47afe754a89fdp1021,-0x1.47afe754a89fep1021 126 nextUp,-0x1.ea33b08c7fbfap1022,-0x1.ea33b08c7fbfbp1022 127 nextUp,0x1.40c8f2c416882p1023,0x1.40c8f2c416881p1023 128 nextUp,-0x1.d2762c5e7c22ap1022,-0x1.d2762c5e7c22bp1022 129 nextUp,0x1.0c0c8b67b7dafp1021,0x1.0c0c8b67b7daep1021 130 nextUp,-0x1.800e50b80ea84p1023,-0x1.800e50b80ea85p1023 131 nextUp,0x1.ccf6eeb86909dp1020,0x1.ccf6eeb86909cp1020 132 nextUp,-0x1.6d6d5ccb7231ep1022,-0x1.6d6d5ccb7231fp1022 [all …]
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | FpUtils.java | 694 public static double nextUp(double d) { in nextUp() method in FpUtils 695 return Math.nextUp(d); in nextUp() 725 public static float nextUp(float f) { in nextUp() method in FpUtils 726 return Math.nextUp(f); in nextUp()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | StrictMath.java | 1661 public static double nextUp(double d) { in nextUp() method in StrictMath 1662 return Math.nextUp(d); in nextUp() 1690 public static float nextUp(float f) { in nextUp() method in StrictMath 1691 return Math.nextUp(f); in nextUp()
|
D | Math.java | 2226 public static double nextUp(double d) { in nextUp() method in Math 2261 public static float nextUp(float f) { in nextUp() method in Math
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | StrictMathBenchmark.java | 269 StrictMath.nextUp(d); in timeNextUpD() 275 StrictMath.nextUp(f); in timeNextUpF()
|
D | MathBenchmark.java | 325 result = Math.nextUp(d); in timeNextUpD() 333 result = Math.nextUp(f); in timeNextUpF()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | StrictMathTest.java | 833 .nextUp(start)); in test_nextUp_D() 840 .nextUp(Double.NaN))); in test_nextUp_D() 844 StrictMath.nextUp((Double) null); in test_nextUp_D() 865 .nextUp(start)); in test_nextUp_F() 872 .nextUp(Float.NaN))); in test_nextUp_F() 876 StrictMath.nextUp((Float) null); in test_nextUp_F()
|
D | MathTest.java | 1010 final long resultBits = Double.doubleToLongBits(Math.nextUp(start)); in test_nextUp_D() 1017 .nextUp(Double.NaN))); in test_nextUp_D() 1021 Math.nextUp((Double) null); in test_nextUp_D() 1041 final int resultBits = Float.floatToIntBits(Math.nextUp(start)); in test_nextUp_F() 1048 .nextUp(Float.NaN))); in test_nextUp_F() 1052 Math.nextUp((Float) null); in test_nextUp_F()
|