Searched refs:compareBytes (Results 1 – 1 of 1) sorted by relevance
/art/test/567-checker-compare/src/ |
D | Main.java | 79 private static int compareBytes(byte x, byte y) { in compareBytes() method in Main 342 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareBytes() 343 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)-1)); in testCompareBytes() 344 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)0)); in testCompareBytes() 345 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)1)); in testCompareBytes() 346 expectEquals(-1, compareBytes(Byte.MIN_VALUE, Byte.MAX_VALUE)); in testCompareBytes() 347 expectEquals(-1, compareBytes((byte)-1, (byte)0)); in testCompareBytes() 348 expectEquals(-1, compareBytes((byte)-1, (byte)1)); in testCompareBytes() 349 expectEquals(-1, compareBytes((byte)0, (byte)1)); in testCompareBytes() 351 expectEquals(0, compareBytes(Byte.MIN_VALUE, Byte.MIN_VALUE)); in testCompareBytes() [all …]
|