Lines Matching refs:Integer
40 if (Integer.compare(x, 0) < 0) { in $opt$noinline$testReplaceInputWithItself()
88 return Integer.compare((x ? 1 : 0), (y ? 1 : 0)); in compareBooleans()
103 return Integer.compare(x, y); in compareBytes()
118 return Integer.compare(x, y); in compareShorts()
133 return Integer.compare(x, y); in compareChars()
148 return Integer.compare(x, y); in compareInts()
179 return Integer.compare(x, y); in compareByteShort()
194 return Integer.compare(x, y); in compareByteChar()
209 return Integer.compare(x, y); in compareByteInt()
225 return Integer.compare(x, y); in compareShortByte()
240 return Integer.compare(x, y); in compareShortChar()
255 return Integer.compare(x, y); in compareShortInt()
271 return Integer.compare(x, y); in compareCharByte()
286 return Integer.compare(x, y); in compareCharShort()
301 return Integer.compare(x, y); in compareCharInt()
317 return Integer.compare(x, y); in compareIntByte()
332 return Integer.compare(x, y); in compareIntShort()
347 return Integer.compare(x, y); in compareIntChar()
454 expectEquals(-1, compareInts(Integer.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareInts()
455 expectEquals(-1, compareInts(Integer.MIN_VALUE, -1)); in testCompareInts()
456 expectEquals(-1, compareInts(Integer.MIN_VALUE, 0)); in testCompareInts()
457 expectEquals(-1, compareInts(Integer.MIN_VALUE, 1)); in testCompareInts()
458 expectEquals(-1, compareInts(Integer.MIN_VALUE, Integer.MAX_VALUE)); in testCompareInts()
463 expectEquals(0, compareInts(Integer.MIN_VALUE, Integer.MIN_VALUE)); in testCompareInts()
467 expectEquals(0, compareInts(Integer.MAX_VALUE, Integer.MAX_VALUE)); in testCompareInts()
472 expectEquals(1, compareInts(Integer.MAX_VALUE, Integer.MIN_VALUE)); in testCompareInts()
473 expectEquals(1, compareInts(Integer.MAX_VALUE, -1)); in testCompareInts()
474 expectEquals(1, compareInts(Integer.MAX_VALUE, 0)); in testCompareInts()
475 expectEquals(1, compareInts(Integer.MAX_VALUE, 1)); in testCompareInts()
476 expectEquals(1, compareInts(Integer.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareInts()
602 expectEquals(-1, compareByteInt(Byte.MIN_VALUE, Integer.MAX_VALUE)); in testCompareByteInt()
606 expectEquals(-1, compareByteInt(Byte.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareByteInt()
607 expectEquals(-1, compareByteInt(Byte.MAX_VALUE, Integer.MAX_VALUE)); in testCompareByteInt()
613 expectEquals(1, compareByteInt(Byte.MIN_VALUE, Integer.MIN_VALUE)); in testCompareByteInt()
614 expectEquals(1, compareByteInt(Byte.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareByteInt()
618 expectEquals(1, compareByteInt(Byte.MAX_VALUE, Integer.MIN_VALUE)); in testCompareByteInt()
700 expectEquals(-1, compareShortInt(Short.MIN_VALUE, Integer.MAX_VALUE)); in testCompareShortInt()
704 expectEquals(-1, compareShortInt(Short.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareShortInt()
705 expectEquals(-1, compareShortInt(Short.MAX_VALUE, Integer.MAX_VALUE)); in testCompareShortInt()
711 expectEquals(1, compareShortInt(Short.MIN_VALUE, Integer.MIN_VALUE)); in testCompareShortInt()
712 expectEquals(1, compareShortInt(Short.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareShortInt()
716 expectEquals(1, compareShortInt(Short.MAX_VALUE, Integer.MIN_VALUE)); in testCompareShortInt()
792 expectEquals(-1, compareCharInt((char)0, Integer.MAX_VALUE)); in testCompareCharInt()
793 expectEquals(-1, compareCharInt(Character.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareCharInt()
794 expectEquals(-1, compareCharInt(Character.MAX_VALUE, Integer.MAX_VALUE)); in testCompareCharInt()
799 expectEquals(1, compareCharInt((char)0, Integer.MIN_VALUE)); in testCompareCharInt()
800 expectEquals(1, compareCharInt((char)0, Integer.MIN_VALUE + 1)); in testCompareCharInt()
804 expectEquals(1, compareCharInt(Character.MAX_VALUE, Integer.MIN_VALUE)); in testCompareCharInt()
821 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MIN_VALUE)); in testCompareIntByte()
822 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareIntByte()
823 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)-1)); in testCompareIntByte()
824 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)0)); in testCompareIntByte()
825 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)1)); in testCompareIntByte()
826 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
838 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MIN_VALUE)); in testCompareIntByte()
839 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)-1)); in testCompareIntByte()
840 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)0)); in testCompareIntByte()
841 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)1)); in testCompareIntByte()
842 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareIntByte()
843 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
856 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, Short.MIN_VALUE)); in testCompareIntShort()
857 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)(Short.MIN_VALUE + 1))); in testCompareIntShort()
858 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)-1)); in testCompareIntShort()
859 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)0)); in testCompareIntShort()
860 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)1)); in testCompareIntShort()
861 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, Short.MAX_VALUE)); in testCompareIntShort()
873 expectEquals(1, compareIntShort(Integer.MAX_VALUE, Short.MIN_VALUE)); in testCompareIntShort()
874 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)-1)); in testCompareIntShort()
875 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)0)); in testCompareIntShort()
876 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)1)); in testCompareIntShort()
877 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)(Short.MAX_VALUE - 1))); in testCompareIntShort()
878 expectEquals(1, compareIntShort(Integer.MAX_VALUE, Short.MAX_VALUE)); in testCompareIntShort()
891 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, (char)0)); in testCompareIntChar()
892 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, (char)1)); in testCompareIntChar()
893 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, Character.MAX_VALUE)); in testCompareIntChar()
902 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)0)); in testCompareIntChar()
903 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)1)); in testCompareIntChar()
904 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)(Character.MAX_VALUE - 1))); in testCompareIntChar()
905 expectEquals(1, compareIntChar(Integer.MAX_VALUE, Character.MAX_VALUE)); in testCompareIntChar()