Searched refs:compareUnsigned (Results 1 – 9 of 9) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/ |
D | Long.java | 708 if (compareUnsigned(result, first) < 0) { in parseUnsignedLong() 1272 public static int compareUnsigned(long x, long y) { in compareUnsigned() method in Long 1299 return (compareUnsigned(dividend, divisor)) < 0 ? 0L :1L; in divideUnsigned() 1332 if (compareUnsigned(dividend, divisor) < 0) // Avoid explicit check for 0 divisor in remainderUnsigned()
|
D | Integer.java | 1284 public static int compareUnsigned(int x, int y) {
|
/libcore/luni/src/main/java/libcore/io/ |
D | NioBufferIterator.java | 44 if (Long.compareUnsigned(address, MAX_VALID_ADDRESS - length) > 0) { in NioBufferIterator()
|
/libcore/ojluni/annotations/hiddenapi/java/lang/ |
D | Integer.java | 185 public static int compareUnsigned(int x, int y) { in compareUnsigned() method in Integer
|
D | Long.java | 189 public static int compareUnsigned(long x, long y) { in compareUnsigned() method in Long
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/ |
D | Long.annotated.java | 99 public static int compareUnsigned(long x, long y) { throw new RuntimeException("Stub!"); } in compareUnsigned() method in Long
|
D | Integer.annotated.java | 98 public static int compareUnsigned(int x, int y) { throw new RuntimeException("Stub!"); } in compareUnsigned() method in Integer
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | IntegerTest.java | 166 Integer.compareUnsigned(ordVals[i], ordVals[j]));
|
D | LongTest.java | 174 Long.compareUnsigned(ordVals[i], ordVals[j]));
|