Lines Matching refs:Byte
361 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareBytes()
362 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)-1)); in testCompareBytes()
363 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)0)); in testCompareBytes()
364 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)1)); in testCompareBytes()
365 expectEquals(-1, compareBytes(Byte.MIN_VALUE, Byte.MAX_VALUE)); in testCompareBytes()
370 expectEquals(0, compareBytes(Byte.MIN_VALUE, Byte.MIN_VALUE)); in testCompareBytes()
374 expectEquals(0, compareBytes(Byte.MAX_VALUE, Byte.MAX_VALUE)); in testCompareBytes()
379 expectEquals(1, compareBytes(Byte.MAX_VALUE, Byte.MIN_VALUE)); in testCompareBytes()
380 expectEquals(1, compareBytes(Byte.MAX_VALUE, (byte)-1)); in testCompareBytes()
381 expectEquals(1, compareBytes(Byte.MAX_VALUE, (byte)0)); in testCompareBytes()
382 expectEquals(1, compareBytes(Byte.MAX_VALUE, (byte)1)); in testCompareBytes()
383 expectEquals(1, compareBytes(Byte.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareBytes()
537 expectEquals(-1, compareByteShort(Byte.MIN_VALUE, (short)-1)); in testCompareByteShort()
538 expectEquals(-1, compareByteShort(Byte.MIN_VALUE, (short)0)); in testCompareByteShort()
539 expectEquals(-1, compareByteShort(Byte.MIN_VALUE, (short)1)); in testCompareByteShort()
540 expectEquals(-1, compareByteShort(Byte.MIN_VALUE, Short.MAX_VALUE)); in testCompareByteShort()
544 expectEquals(-1, compareByteShort(Byte.MAX_VALUE, (short)(Short.MAX_VALUE - 1))); in testCompareByteShort()
545 expectEquals(-1, compareByteShort(Byte.MAX_VALUE, Short.MAX_VALUE)); in testCompareByteShort()
551 expectEquals(1, compareByteShort(Byte.MIN_VALUE, Short.MIN_VALUE)); in testCompareByteShort()
552 expectEquals(1, compareByteShort(Byte.MIN_VALUE, (short)(Short.MIN_VALUE + 1))); in testCompareByteShort()
556 expectEquals(1, compareByteShort(Byte.MAX_VALUE, Short.MIN_VALUE)); in testCompareByteShort()
557 expectEquals(1, compareByteShort(Byte.MAX_VALUE, (short)-1)); in testCompareByteShort()
558 expectEquals(1, compareByteShort(Byte.MAX_VALUE, (short)0)); in testCompareByteShort()
559 expectEquals(1, compareByteShort(Byte.MAX_VALUE, (short)1)); in testCompareByteShort()
572 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, (char)0)); in testCompareByteChar()
573 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, (char)1)); in testCompareByteChar()
574 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, Character.MAX_VALUE)); in testCompareByteChar()
578 expectEquals(-1, compareByteChar(Byte.MAX_VALUE, (char)(Character.MAX_VALUE - 1))); in testCompareByteChar()
579 expectEquals(-1, compareByteChar(Byte.MAX_VALUE, Character.MAX_VALUE)); in testCompareByteChar()
585 expectEquals(1, compareByteChar(Byte.MAX_VALUE, (char)0)); in testCompareByteChar()
586 expectEquals(1, compareByteChar(Byte.MAX_VALUE, (char)1)); in testCompareByteChar()
599 expectEquals(-1, compareByteInt(Byte.MIN_VALUE, -1)); in testCompareByteInt()
600 expectEquals(-1, compareByteInt(Byte.MIN_VALUE, 0)); in testCompareByteInt()
601 expectEquals(-1, compareByteInt(Byte.MIN_VALUE, 1)); in testCompareByteInt()
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()
619 expectEquals(1, compareByteInt(Byte.MAX_VALUE, -1)); in testCompareByteInt()
620 expectEquals(1, compareByteInt(Byte.MAX_VALUE, 0)); in testCompareByteInt()
621 expectEquals(1, compareByteInt(Byte.MAX_VALUE, 1)); in testCompareByteInt()
635 expectEquals(-1, compareShortByte(Short.MIN_VALUE, Byte.MIN_VALUE)); in testCompareShortByte()
636 expectEquals(-1, compareShortByte(Short.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareShortByte()
640 expectEquals(-1, compareShortByte(Short.MIN_VALUE, Byte.MAX_VALUE)); in testCompareShortByte()
652 expectEquals(1, compareShortByte(Short.MAX_VALUE, Byte.MIN_VALUE)); in testCompareShortByte()
656 expectEquals(1, compareShortByte(Short.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareShortByte()
657 expectEquals(1, compareShortByte(Short.MAX_VALUE, Byte.MAX_VALUE)); in testCompareShortByte()
734 expectEquals(-1, compareCharByte((char)0, Byte.MAX_VALUE)); in testCompareCharByte()
739 expectEquals(1, compareCharByte((char)0, Byte.MIN_VALUE)); in testCompareCharByte()
740 expectEquals(1, compareCharByte((char)0, (byte)(Byte.MIN_VALUE + 1))); in testCompareCharByte()
744 expectEquals(1, compareCharByte(Character.MAX_VALUE, Byte.MIN_VALUE)); in testCompareCharByte()
748 expectEquals(1, compareCharByte(Character.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareCharByte()
749 expectEquals(1, compareCharByte(Character.MAX_VALUE, Byte.MAX_VALUE)); in testCompareCharByte()
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()
826 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
838 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MIN_VALUE)); 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()