Searched refs:compareIntShort (Results 1 – 1 of 1) sorted by relevance
/aosp12/art/test/567-checker-builder-intrinsics/src/ |
H A D | TestCompare.java | 283 public static int compareIntShort(int x, short y) { in compareIntShort() method in TestCompare 814 expectEquals(-1, compareIntShort(-1, (short)0)); in testCompareIntShort() 815 expectEquals(-1, compareIntShort(-1, (short)1)); in testCompareIntShort() 816 expectEquals(-1, compareIntShort(0, (short)1)); in testCompareIntShort() 818 expectEquals(0, compareIntShort(-1, (short)-1)); in testCompareIntShort() 819 expectEquals(0, compareIntShort(0, (short)0)); in testCompareIntShort() 820 expectEquals(0, compareIntShort(1, (short)1)); in testCompareIntShort() 822 expectEquals(1, compareIntShort(0, (short)-1)); in testCompareIntShort() 823 expectEquals(1, compareIntShort(1, (short)-1)); in testCompareIntShort() 824 expectEquals(1, compareIntShort(1, (short)0)); in testCompareIntShort() [all …]
|