Home
last modified time | relevance | path

Searched refs:nextUp (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/test/resources/
Dmath_java_only.csv123 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/
DFpUtils.java694 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/
DStrictMath.java1661 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()
DMath.java2226 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/
DStrictMathBenchmark.java269 StrictMath.nextUp(d); in timeNextUpD()
275 StrictMath.nextUp(f); in timeNextUpF()
DMathBenchmark.java325 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/
DStrictMathTest.java833 .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()
DMathTest.java1010 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()