Home
last modified time | relevance | path

Searched refs:direction (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DMath.java2042 public static double nextAfter(double start, double direction) { in nextAfter() argument
2055 if (Double.isNaN(start) || Double.isNaN(direction)) { in nextAfter()
2057 return start + direction; in nextAfter()
2058 } else if (start == direction) { in nextAfter()
2059 return direction; in nextAfter()
2077 if (direction > start) { // Calculate next greater value in nextAfter()
2080 assert direction < start; in nextAfter()
2141 public static float nextAfter(float start, double direction) { in nextAfter() argument
2154 if (Float.isNaN(start) || Double.isNaN(direction)) { in nextAfter()
2156 return start + (float)direction; in nextAfter()
[all …]
DStrictMath.java1590 public static double nextAfter(double start, double direction) { in nextAfter() argument
1591 return Math.nextAfter(start, direction); in nextAfter()
1632 public static float nextAfter(float start, double direction) { in nextAfter() argument
1633 return Math.nextAfter(start, direction); in nextAfter()
/libcore/ojluni/src/main/java/sun/misc/
DFpUtils.java617 public static double nextAfter(double start, double direction) { in nextAfter() argument
618 return Math.nextAfter(start, direction); in nextAfter()
663 public static float nextAfter(float start, double direction) { in nextAfter() argument
664 return Math.nextAfter(start, direction); in nextAfter()
/libcore/ojluni/annotations/hiddenapi/sun/misc/
DFpUtils.java109 public static double nextAfter(double start, double direction) { in nextAfter() argument
114 public static float nextAfter(float start, double direction) { in nextAfter() argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DStrictMathTest.java702 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; in test_nextAfter_DD() local
704 .nextAfter(start, direction)); in test_nextAfter_DD()
705 final long directionBits = Double.doubleToLongBits(direction); in test_nextAfter_DD()
706 if (direction > start) { in test_nextAfter_DD()
709 } else if (direction < start) { in test_nextAfter_DD()
767 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; in test_nextAfter_FD() local
769 .nextAfter(start, direction)); in test_nextAfter_FD()
770 if (direction > start) { in test_nextAfter_FD()
773 } else if (direction < start) { in test_nextAfter_FD()
778 direction)); in test_nextAfter_FD()
DMathTest.java856 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; in test_nextAfter_DD() local
858 start, direction)); in test_nextAfter_DD()
859 final long directionBits = Double.doubleToLongBits(direction); in test_nextAfter_DD()
860 if (direction > start) { in test_nextAfter_DD()
863 } else if (direction < start) { in test_nextAfter_DD()
945 final double direction = NEXTAFTER_DD_FD_DIRECTION_CASES[j]; in test_nextAfter_FD() local
947 start, direction)); in test_nextAfter_FD()
948 if (direction > start) { in test_nextAfter_FD()
951 } else if (direction < start) { in test_nextAfter_FD()
956 direction)); in test_nextAfter_FD()
/libcore/ojluni/src/main/java/java/sql/
DStatement.java419 void setFetchDirection(int direction) throws SQLException; in setFetchDirection() argument
DResultSet.java1333 void setFetchDirection(int direction) throws SQLException; in setFetchDirection() argument
/libcore/benchmarks/libs/
Dcaliper.jar.txt20 direction or management of such entity, whether by contract or
/libcore/benchmarks/src/benchmarks/regression/
DR.java1531 public static final int direction = 0; field in R