Searched refs:compareByteChar (Results 1 – 1 of 1) sorted by relevance
/aosp12/art/test/567-checker-builder-intrinsics/src/ |
H A D | TestCompare.java | 181 public static int compareByteChar(byte x, char y) { in compareByteChar() method in TestCompare 524 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, (char)0)); in testCompareByteChar() 527 expectEquals(-1, compareByteChar((byte)-1, (char)0)); in testCompareByteChar() 528 expectEquals(-1, compareByteChar((byte)-1, (char)1)); in testCompareByteChar() 529 expectEquals(-1, compareByteChar((byte)0, (char)1)); in testCompareByteChar() 533 expectEquals(0, compareByteChar((byte)0, (char)0)); in testCompareByteChar() 534 expectEquals(0, compareByteChar((byte)1, (char)1)); in testCompareByteChar() 536 expectEquals(1, compareByteChar((byte)1, (char)0)); in testCompareByteChar() 537 expectEquals(1, compareByteChar(Byte.MAX_VALUE, (char)0)); in testCompareByteChar() 538 expectEquals(1, compareByteChar(Byte.MAX_VALUE, (char)1)); in testCompareByteChar() [all …]
|