Searched defs:nextAfter (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFpUtils.java734 public static double nextAfter(double start, double direction) { method in class:FpUtils
738 * nextAfter(+infinity, 0) == MAX_VALUE
739 * nextAfter(+infinity, +infinity) == +infinity
740 * nextAfter(-infinity, 0) == -MAX_VALUE
741 * nextAfter(-infinity, -infinity) == -infinity
834 public static float nextAfter(float start, double direction) { method in class:FpUtils
838 * nextAfter(+infinity, 0) == MAX_VALUE
839 * nextAfter(+infinity, +infinity) == +infinity
840 * nextAfter(-infinity, 0) == -MAX_VALUE
841 * nextAfter(
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DMath.java1353 public static double nextAfter(double start, double direction) { method in class:Math
1354 return sun.misc.FpUtils.nextAfter(start, direction);
1396 public static float nextAfter(float start, double direction) { method in class:Math
1397 return sun.misc.FpUtils.nextAfter(start, direction);
1403 * semantically equivalent to {@code nextAfter(d,
1406 * {@code nextAfter} call.
1432 * semantically equivalent to {@code nextAfter(f,
1435 * {@code nextAfter} call.
H A DStrictMath.java1296 public static double nextAfter(double start, double direction) { method in class:StrictMath
1297 return sun.misc.FpUtils.nextAfter(start, direction);
1338 public static float nextAfter(float start, double direction) { method in class:StrictMath
1339 return sun.misc.FpUtils.nextAfter(start, direction);
1345 * semantically equivalent to {@code nextAfter(d,
1348 * {@code nextAfter} call.
1374 * semantically equivalent to {@code nextAfter(f,
1377 * {@code nextAfter} call.

Completed in 38 milliseconds