Searched refs:testLongExact (Results 1 – 4 of 4) sorted by relevance
/libcore/luni/src/test/java/libcore/java/lang/ |
D | StrictMathTest.java | 77 public void testLongExact() { in testLongExact() method in StrictMathTest 78 testLongExact(123, 456); in testLongExact() 79 testLongExact(-456, 456); in testLongExact() 80 testLongExact(0, 0); in testLongExact() 81 testLongExact(Long.MAX_VALUE, 1); in testLongExact() 82 testLongExact(Long.MAX_VALUE, -1); in testLongExact() 83 testLongExact(Long.MIN_VALUE, 1); in testLongExact() 84 testLongExact(Long.MIN_VALUE, -1); in testLongExact() 85 testLongExact(Long.MAX_VALUE, Long.MAX_VALUE); in testLongExact() 86 testLongExact(Long.MIN_VALUE, Long.MIN_VALUE); in testLongExact() [all …]
|
D | MathTest.java | 113 public void testLongExact() { in testLongExact() method in MathTest 114 testLongExact(123, 456); in testLongExact() 115 testLongExact(-456, 456); in testLongExact() 116 testLongExact(0, 0); in testLongExact() 117 testLongExact(Long.MAX_VALUE, 1); in testLongExact() 118 testLongExact(Long.MAX_VALUE, -1); in testLongExact() 119 testLongExact(Long.MIN_VALUE, 1); in testLongExact() 120 testLongExact(Long.MIN_VALUE, -1); in testLongExact() 121 testLongExact(Long.MAX_VALUE, Long.MAX_VALUE); in testLongExact() 122 testLongExact(Long.MIN_VALUE, Long.MIN_VALUE); in testLongExact() [all …]
|
/libcore/ojluni/src/test/java/lang/StrictMath/ |
D | ExactArithTests.java | 154 static void testLongExact() { in testLongExact() method in ExactArithTests 189 testLongExact(x, y); in testLongExactTwice() 190 testLongExact(y, x); in testLongExactTwice() 202 static void testLongExact(long x, long y) { in testLongExact() method in ExactArithTests
|
/libcore/ojluni/src/test/java/lang/Math/ |
D | ExactArithTests.java | 179 static void testLongExact() { in testLongExact() method in ExactArithTests 214 testLongExact(x, y); in testLongExactTwice() 215 testLongExact(y, x); in testLongExactTwice() 227 static void testLongExact(long x, long y) { in testLongExact() method in ExactArithTests
|