Lines Matching refs:Integer

35     if (Integer.compare(x, 0) < 0) {  in $opt$noinline$testReplaceInputWithItself()
53 return Integer.compare((x ? 1 : 0), (y ? 1 : 0)); in compareBooleans()
104 return Integer.compare(src_x, src_y); in compareBooleans2()
115 return Integer.compare(x, y); in compareBytes()
126 return Integer.compare(x, y); in compareShorts()
137 return Integer.compare(x, y); in compareChars()
148 return Integer.compare(x, y); in compareInts()
171 return Integer.compare(x, y); in compareByteShort()
182 return Integer.compare(x, y); in compareByteChar()
193 return Integer.compare(x, y); in compareByteInt()
205 return Integer.compare(x, y); in compareShortByte()
216 return Integer.compare(x, y); in compareShortChar()
227 return Integer.compare(x, y); in compareShortInt()
239 return Integer.compare(x, y); in compareCharByte()
250 return Integer.compare(x, y); in compareCharShort()
261 return Integer.compare(x, y); in compareCharInt()
273 return Integer.compare(x, y); in compareIntByte()
284 return Integer.compare(x, y); in compareIntShort()
295 return Integer.compare(x, y); in compareIntChar()
406 expectEquals(-1, compareInts(Integer.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareInts()
407 expectEquals(-1, compareInts(Integer.MIN_VALUE, -1)); in testCompareInts()
408 expectEquals(-1, compareInts(Integer.MIN_VALUE, 0)); in testCompareInts()
409 expectEquals(-1, compareInts(Integer.MIN_VALUE, 1)); in testCompareInts()
410 expectEquals(-1, compareInts(Integer.MIN_VALUE, Integer.MAX_VALUE)); in testCompareInts()
415 expectEquals(0, compareInts(Integer.MIN_VALUE, Integer.MIN_VALUE)); in testCompareInts()
419 expectEquals(0, compareInts(Integer.MAX_VALUE, Integer.MAX_VALUE)); in testCompareInts()
424 expectEquals(1, compareInts(Integer.MAX_VALUE, Integer.MIN_VALUE)); in testCompareInts()
425 expectEquals(1, compareInts(Integer.MAX_VALUE, -1)); in testCompareInts()
426 expectEquals(1, compareInts(Integer.MAX_VALUE, 0)); in testCompareInts()
427 expectEquals(1, compareInts(Integer.MAX_VALUE, 1)); in testCompareInts()
428 expectEquals(1, compareInts(Integer.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareInts()
554 expectEquals(-1, compareByteInt(Byte.MIN_VALUE, Integer.MAX_VALUE)); in testCompareByteInt()
558 expectEquals(-1, compareByteInt(Byte.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareByteInt()
559 expectEquals(-1, compareByteInt(Byte.MAX_VALUE, Integer.MAX_VALUE)); in testCompareByteInt()
565 expectEquals(1, compareByteInt(Byte.MIN_VALUE, Integer.MIN_VALUE)); in testCompareByteInt()
566 expectEquals(1, compareByteInt(Byte.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareByteInt()
570 expectEquals(1, compareByteInt(Byte.MAX_VALUE, Integer.MIN_VALUE)); in testCompareByteInt()
652 expectEquals(-1, compareShortInt(Short.MIN_VALUE, Integer.MAX_VALUE)); in testCompareShortInt()
656 expectEquals(-1, compareShortInt(Short.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareShortInt()
657 expectEquals(-1, compareShortInt(Short.MAX_VALUE, Integer.MAX_VALUE)); in testCompareShortInt()
663 expectEquals(1, compareShortInt(Short.MIN_VALUE, Integer.MIN_VALUE)); in testCompareShortInt()
664 expectEquals(1, compareShortInt(Short.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareShortInt()
668 expectEquals(1, compareShortInt(Short.MAX_VALUE, Integer.MIN_VALUE)); in testCompareShortInt()
744 expectEquals(-1, compareCharInt((char)0, Integer.MAX_VALUE)); in testCompareCharInt()
745 expectEquals(-1, compareCharInt(Character.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareCharInt()
746 expectEquals(-1, compareCharInt(Character.MAX_VALUE, Integer.MAX_VALUE)); in testCompareCharInt()
751 expectEquals(1, compareCharInt((char)0, Integer.MIN_VALUE)); in testCompareCharInt()
752 expectEquals(1, compareCharInt((char)0, Integer.MIN_VALUE + 1)); in testCompareCharInt()
756 expectEquals(1, compareCharInt(Character.MAX_VALUE, Integer.MIN_VALUE)); in testCompareCharInt()
773 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MIN_VALUE)); in testCompareIntByte()
774 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareIntByte()
775 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)-1)); in testCompareIntByte()
776 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)0)); in testCompareIntByte()
777 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)1)); in testCompareIntByte()
778 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
790 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MIN_VALUE)); in testCompareIntByte()
791 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)-1)); in testCompareIntByte()
792 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)0)); in testCompareIntByte()
793 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)1)); in testCompareIntByte()
794 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareIntByte()
795 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
808 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, Short.MIN_VALUE)); in testCompareIntShort()
809 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)(Short.MIN_VALUE + 1))); in testCompareIntShort()
810 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)-1)); in testCompareIntShort()
811 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)0)); in testCompareIntShort()
812 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)1)); in testCompareIntShort()
813 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, Short.MAX_VALUE)); in testCompareIntShort()
825 expectEquals(1, compareIntShort(Integer.MAX_VALUE, Short.MIN_VALUE)); in testCompareIntShort()
826 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)-1)); in testCompareIntShort()
827 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)0)); in testCompareIntShort()
828 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)1)); in testCompareIntShort()
829 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)(Short.MAX_VALUE - 1))); in testCompareIntShort()
830 expectEquals(1, compareIntShort(Integer.MAX_VALUE, Short.MAX_VALUE)); in testCompareIntShort()
843 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, (char)0)); in testCompareIntChar()
844 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, (char)1)); in testCompareIntChar()
845 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, Character.MAX_VALUE)); in testCompareIntChar()
854 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)0)); in testCompareIntChar()
855 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)1)); in testCompareIntChar()
856 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)(Character.MAX_VALUE - 1))); in testCompareIntChar()
857 expectEquals(1, compareIntChar(Integer.MAX_VALUE, Character.MAX_VALUE)); in testCompareIntChar()