Searched refs:nextDown (Results 1 – 6 of 6) sorted by relevance
756 public static double nextDown(double d) { in nextDown() method in FpUtils757 return Math.nextDown(d); in nextDown()787 public static double nextDown(float f) { in nextDown() method in FpUtils788 return Math.nextDown(f); in nextDown()
1719 public static double nextDown(double d) { in nextDown() method in StrictMath1720 return Math.nextDown(d); in nextDown()1748 public static float nextDown(float f) { in nextDown() method in StrictMath1749 return Math.nextDown(f); in nextDown()
2296 public static double nextDown(double d) { in nextDown() method in Math2333 public static float nextDown(float f) { in nextDown() method in Math
236 r = Math.nextDown(r); in test_doubles$II()259 r = Math.nextDown(r); in test_doubles$LII()
897 .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()
1072 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()