Searched refs:compareShortChar (Results 1 – 1 of 1) sorted by relevance
/aosp12/art/test/567-checker-builder-intrinsics/src/ |
H A D | TestCompare.java | 215 public static int compareShortChar(short x, char y) { in compareShortChar() method in TestCompare 622 expectEquals(-1, compareShortChar(Short.MIN_VALUE, (char)0)); in testCompareShortChar() 625 expectEquals(-1, compareShortChar((short)-1, (char)0)); in testCompareShortChar() 626 expectEquals(-1, compareShortChar((short)-1, (char)1)); in testCompareShortChar() 627 expectEquals(-1, compareShortChar((short)0, (char)1)); in testCompareShortChar() 631 expectEquals(0, compareShortChar((short)0, (char)0)); in testCompareShortChar() 632 expectEquals(0, compareShortChar((short)1, (char)1)); in testCompareShortChar() 634 expectEquals(1, compareShortChar((short)1, (char)0)); in testCompareShortChar() 635 expectEquals(1, compareShortChar(Short.MAX_VALUE, (char)0)); in testCompareShortChar() 636 expectEquals(1, compareShortChar(Short.MAX_VALUE, (char)1)); in testCompareShortChar() [all …]
|