Searched refs:compareInts (Results 1 – 1 of 1) sorted by relevance
/aosp12/art/test/567-checker-builder-intrinsics/src/ |
H A D | TestCompare.java | 147 private static int compareInts(int x, int y) { in compareInts() method in TestCompare 411 expectEquals(-1, compareInts(-1, 0)); in testCompareInts() 412 expectEquals(-1, compareInts(-1, 1)); in testCompareInts() 413 expectEquals(-1, compareInts(0, 1)); in testCompareInts() 416 expectEquals(0, compareInts(-1, -1)); in testCompareInts() 417 expectEquals(0, compareInts(0, 0)); in testCompareInts() 418 expectEquals(0, compareInts(1, 1)); in testCompareInts() 421 expectEquals(1, compareInts(0, -1)); in testCompareInts() 422 expectEquals(1, compareInts(1, -1)); in testCompareInts() 423 expectEquals(1, compareInts(1, 0)); in testCompareInts() [all …]
|