Searched refs:compareCharByte (Results 1 – 1 of 1) sorted by relevance
/aosp12/art/test/567-checker-builder-intrinsics/src/ |
H A D | TestCompare.java | 238 public static int compareCharByte(char x, byte y) { in compareCharByte() method in TestCompare 685 expectEquals(-1, compareCharByte((char)0, (byte)1)); in testCompareCharByte() 686 expectEquals(-1, compareCharByte((char)0, Byte.MAX_VALUE)); in testCompareCharByte() 688 expectEquals(0, compareCharByte((char)0, (byte)0)); in testCompareCharByte() 689 expectEquals(0, compareCharByte((char)1, (byte)1)); in testCompareCharByte() 691 expectEquals(1, compareCharByte((char)0, Byte.MIN_VALUE)); in testCompareCharByte() 693 expectEquals(1, compareCharByte((char)0, (byte)-1)); in testCompareCharByte() 694 expectEquals(1, compareCharByte((char)1, (byte)-1)); in testCompareCharByte() 695 expectEquals(1, compareCharByte((char)1, (byte)0)); in testCompareCharByte() 698 expectEquals(1, compareCharByte(Character.MAX_VALUE, (byte)0)); in testCompareCharByte() [all …]
|