Searched refs:compareBytes (Results 1 – 1 of 1) sorted by relevance
/art/test/567-checker-builder-intrinsics/src/ |
D | TestCompare.java | 114 private static int compareBytes(byte x, byte y) { in compareBytes() method in TestCompare 313 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareBytes() 314 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)-1)); in testCompareBytes() 315 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)0)); in testCompareBytes() 316 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)1)); in testCompareBytes() 317 expectEquals(-1, compareBytes(Byte.MIN_VALUE, Byte.MAX_VALUE)); in testCompareBytes() 318 expectEquals(-1, compareBytes((byte)-1, (byte)0)); in testCompareBytes() 319 expectEquals(-1, compareBytes((byte)-1, (byte)1)); in testCompareBytes() 320 expectEquals(-1, compareBytes((byte)0, (byte)1)); in testCompareBytes() 322 expectEquals(0, compareBytes(Byte.MIN_VALUE, Byte.MIN_VALUE)); in testCompareBytes() [all …]
|