Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/misc/
DFpUtils.java756 public static double nextDown(double d) { in nextDown() method in FpUtils
757 return Math.nextDown(d); in nextDown()
787 public static double nextDown(float f) { in nextDown() method in FpUtils
788 return Math.nextDown(f); in nextDown()
/libcore/ojluni/src/main/java/java/lang/
DStrictMath.java1610 public static double nextDown(double d) { in nextDown() method in StrictMath
1611 return Math.nextDown(d); in nextDown()
1639 public static float nextDown(float f) { in nextDown() method in StrictMath
1640 return Math.nextDown(f); in nextDown()
DMath.java2154 public static double nextDown(double d) { in nextDown() method in Math
2191 public static float nextDown(float f) { in nextDown() method in Math
/libcore/ojluni/annotations/hiddenapi/sun/misc/
DFpUtils.java129 public static double nextDown(double d) { in nextDown() method in FpUtils
134 public static double nextDown(float f) { in nextDown() method in FpUtils
/libcore/ojluni/annotations/mmodule/java/lang/
DMath.annotated.java178 public static double nextDown(double d) { throw new RuntimeException("Stub!"); } in nextDown() method in Math
180 public static float nextDown(float f) { throw new RuntimeException("Stub!"); } in nextDown() method in Math
/libcore/luni/src/test/java/libcore/java/util/
DRandomTest.java236 r = Math.nextDown(r); in test_doubles$II()
259 r = Math.nextDown(r); in test_doubles$LII()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DStrictMathTest.java897 .nextDown(start)); in test_nextDown_D()
904 .nextDown(Double.NaN))); in test_nextDown_D()
908 StrictMath.nextDown((Double) null); in test_nextDown_D()
929 .nextDown(start)); in test_nextDown_F()
936 .nextDown(Float.NaN))); in test_nextDown_F()
940 StrictMath.nextDown((Float) null); in test_nextDown_F()
DMathTest.java1072 final long resultBits = Double.doubleToLongBits(Math.nextDown(start)); in test_nextDown_D()
1079 .nextDown(Double.NaN))); in test_nextDown_D()
1083 Math.nextDown((Double) null); in test_nextDown_D()
1103 final int resultBits = Float.floatToIntBits(Math.nextDown(start)); in test_nextDown_F()
1110 .nextDown(Float.NaN))); in test_nextDown_F()
1114 Math.nextDown((Float) null); in test_nextDown_F()