Home
last modified time | relevance | path

Searched refs:compareUnsigned (Results 1 – 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DLong.java708 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()
DInteger.java1284 public static int compareUnsigned(int x, int y) {
/libcore/luni/src/main/java/libcore/io/
DNioBufferIterator.java44 if (Long.compareUnsigned(address, MAX_VALID_ADDRESS - length) > 0) { in NioBufferIterator()
/libcore/ojluni/annotations/hiddenapi/java/lang/
DInteger.java185 public static int compareUnsigned(int x, int y) { in compareUnsigned() method in Integer
DLong.java189 public static int compareUnsigned(long x, long y) { in compareUnsigned() method in Long
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DLong.annotated.java99 public static int compareUnsigned(long x, long y) { throw new RuntimeException("Stub!"); } in compareUnsigned() method in Long
DInteger.annotated.java98 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/
DIntegerTest.java166 Integer.compareUnsigned(ordVals[i], ordVals[j]));
DLongTest.java174 Long.compareUnsigned(ordVals[i], ordVals[j]));