Lines Matching refs:Byte

313     expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1)));  in testCompareBytes()
314 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)-1)); in testCompareBytes()
315 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)0)); in testCompareBytes()
316 expectEquals(-1, compareBytes(Byte.MIN_VALUE, (byte)1)); in testCompareBytes()
317 expectEquals(-1, compareBytes(Byte.MIN_VALUE, Byte.MAX_VALUE)); in testCompareBytes()
322 expectEquals(0, compareBytes(Byte.MIN_VALUE, Byte.MIN_VALUE)); in testCompareBytes()
326 expectEquals(0, compareBytes(Byte.MAX_VALUE, Byte.MAX_VALUE)); in testCompareBytes()
331 expectEquals(1, compareBytes(Byte.MAX_VALUE, Byte.MIN_VALUE)); in testCompareBytes()
332 expectEquals(1, compareBytes(Byte.MAX_VALUE, (byte)-1)); in testCompareBytes()
333 expectEquals(1, compareBytes(Byte.MAX_VALUE, (byte)0)); in testCompareBytes()
334 expectEquals(1, compareBytes(Byte.MAX_VALUE, (byte)1)); in testCompareBytes()
335 expectEquals(1, compareBytes(Byte.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareBytes()
489 expectEquals(-1, compareByteShort(Byte.MIN_VALUE, (short)-1)); in testCompareByteShort()
490 expectEquals(-1, compareByteShort(Byte.MIN_VALUE, (short)0)); in testCompareByteShort()
491 expectEquals(-1, compareByteShort(Byte.MIN_VALUE, (short)1)); in testCompareByteShort()
492 expectEquals(-1, compareByteShort(Byte.MIN_VALUE, Short.MAX_VALUE)); in testCompareByteShort()
496 expectEquals(-1, compareByteShort(Byte.MAX_VALUE, (short)(Short.MAX_VALUE - 1))); in testCompareByteShort()
497 expectEquals(-1, compareByteShort(Byte.MAX_VALUE, Short.MAX_VALUE)); in testCompareByteShort()
503 expectEquals(1, compareByteShort(Byte.MIN_VALUE, Short.MIN_VALUE)); in testCompareByteShort()
504 expectEquals(1, compareByteShort(Byte.MIN_VALUE, (short)(Short.MIN_VALUE + 1))); in testCompareByteShort()
508 expectEquals(1, compareByteShort(Byte.MAX_VALUE, Short.MIN_VALUE)); in testCompareByteShort()
509 expectEquals(1, compareByteShort(Byte.MAX_VALUE, (short)-1)); in testCompareByteShort()
510 expectEquals(1, compareByteShort(Byte.MAX_VALUE, (short)0)); in testCompareByteShort()
511 expectEquals(1, compareByteShort(Byte.MAX_VALUE, (short)1)); in testCompareByteShort()
524 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, (char)0)); in testCompareByteChar()
525 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, (char)1)); in testCompareByteChar()
526 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, Character.MAX_VALUE)); in testCompareByteChar()
530 expectEquals(-1, compareByteChar(Byte.MAX_VALUE, (char)(Character.MAX_VALUE - 1))); in testCompareByteChar()
531 expectEquals(-1, compareByteChar(Byte.MAX_VALUE, Character.MAX_VALUE)); in testCompareByteChar()
537 expectEquals(1, compareByteChar(Byte.MAX_VALUE, (char)0)); in testCompareByteChar()
538 expectEquals(1, compareByteChar(Byte.MAX_VALUE, (char)1)); in testCompareByteChar()
551 expectEquals(-1, compareByteInt(Byte.MIN_VALUE, -1)); in testCompareByteInt()
552 expectEquals(-1, compareByteInt(Byte.MIN_VALUE, 0)); in testCompareByteInt()
553 expectEquals(-1, compareByteInt(Byte.MIN_VALUE, 1)); in testCompareByteInt()
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()
571 expectEquals(1, compareByteInt(Byte.MAX_VALUE, -1)); in testCompareByteInt()
572 expectEquals(1, compareByteInt(Byte.MAX_VALUE, 0)); in testCompareByteInt()
573 expectEquals(1, compareByteInt(Byte.MAX_VALUE, 1)); in testCompareByteInt()
587 expectEquals(-1, compareShortByte(Short.MIN_VALUE, Byte.MIN_VALUE)); in testCompareShortByte()
588 expectEquals(-1, compareShortByte(Short.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareShortByte()
592 expectEquals(-1, compareShortByte(Short.MIN_VALUE, Byte.MAX_VALUE)); in testCompareShortByte()
604 expectEquals(1, compareShortByte(Short.MAX_VALUE, Byte.MIN_VALUE)); in testCompareShortByte()
608 expectEquals(1, compareShortByte(Short.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareShortByte()
609 expectEquals(1, compareShortByte(Short.MAX_VALUE, Byte.MAX_VALUE)); in testCompareShortByte()
686 expectEquals(-1, compareCharByte((char)0, Byte.MAX_VALUE)); in testCompareCharByte()
691 expectEquals(1, compareCharByte((char)0, Byte.MIN_VALUE)); in testCompareCharByte()
692 expectEquals(1, compareCharByte((char)0, (byte)(Byte.MIN_VALUE + 1))); in testCompareCharByte()
696 expectEquals(1, compareCharByte(Character.MAX_VALUE, Byte.MIN_VALUE)); in testCompareCharByte()
700 expectEquals(1, compareCharByte(Character.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareCharByte()
701 expectEquals(1, compareCharByte(Character.MAX_VALUE, Byte.MAX_VALUE)); in testCompareCharByte()
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()
778 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
790 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MIN_VALUE)); 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()