Searched defs:compareUnsigned (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DInteger.java1284 public static int compareUnsigned(int x, int y) { method in class:Integer
H A DLong.java708 if (compareUnsigned(result, first) < 0) {
719 * The compareUnsigned check above catches
1272 public static int compareUnsigned(long x, long y) { method in class:Long
1299 return (compareUnsigned(dividend, divisor)) < 0 ? 0L :1L;
1332 if (compareUnsigned(dividend, divisor) < 0) // Avoid explicit check for 0 divisor

Completed in 42 milliseconds