Searched refs:nextDown (Results 1 – 8 of 8) 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()
1610 public static double nextDown(double d) { in nextDown() method in StrictMath1611 return Math.nextDown(d); in nextDown()1639 public static float nextDown(float f) { in nextDown() method in StrictMath1640 return Math.nextDown(f); in nextDown()
2154 public static double nextDown(double d) { in nextDown() method in Math2191 public static float nextDown(float f) { in nextDown() method in Math
129 public static double nextDown(double d) { in nextDown() method in FpUtils134 public static double nextDown(float f) { in nextDown() method in FpUtils
178 public static double nextDown(double d) { throw new RuntimeException("Stub!"); } in nextDown() method in Math180 public static float nextDown(float f) { throw new RuntimeException("Stub!"); } 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()