Home
last modified time | relevance | path

Searched refs:b3 (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DMessageDigest1Test.java202 byte[] b3 = { 1, 3, 3, 4 }; in test_isEqualLB$LB$()
207 assertFalse(MessageDigest.isEqual(b1, b3)); in test_isEqualLB$LB$()
/libcore/ojluni/src/main/java/java/nio/
DBits.java208 static private int makeInt(byte b3, byte b2, byte b1, byte b0) { in makeInt() argument
209 return (((b3 ) << 24) | in makeInt()
302 byte b3, byte b2, byte b1, byte b0) in makeLong() argument
308 (((long)b3 & 0xff) << 24) | in makeLong()
/libcore/ojluni/src/main/java/java/io/
DObjectInputStream.java3243 int b1, b2, b3; in readUTFSpan() local
3268 b3 = buf[pos + 1]; in readUTFSpan()
3271 if ((b2 & 0xC0) != 0x80 || (b3 & 0xC0) != 0x80) { in readUTFSpan()
3276 ((b3 & 0x3F) << 0)); in readUTFSpan()
3311 int b1, b2, b3; in readUTFChar() local
3346 b3 = readByte(); in readUTFChar()
3347 if ((b2 & 0xC0) != 0x80 || (b3 & 0xC0) != 0x80) { in readUTFChar()
3352 ((b3 & 0x3F) << 0))); in readUTFChar()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DByteTest.java497 Byte b3 = new Byte((byte) -90);
499 assertTrue("Equality test failed", !b1.equals(b3));
/libcore/jsr166-tests/src/test/java/jsr166/
DArrayDequeTest.java675 Integer[] b3 = (Integer[]) q.toArray(a3); in checkToArray2() local
677 assertSame(a3, b3); in checkToArray2()
684 assertSame(b3[i], x); in checkToArray2()
DArrayBlockingQueueTest.java645 Integer[] b3 = (Integer[]) q.toArray(a3); in checkToArray2() local
647 assertSame(a3, b3); in checkToArray2()
654 assertSame(b3[i], x); in checkToArray2()
/libcore/luni/src/test/java/libcore/java/nio/
DBufferTest.java940 ByteBuffer b3 = b1.asReadOnlyBuffer(); in testAccess() local
941 for (ByteBuffer b: new ByteBuffer[] { b1, b2, b3 }) { in testAccess()
982 for (ByteBuffer b: new ByteBuffer[] { b1, b2, b3 }) { in testAccess()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DArraysTest.java2316 Object[] b3 = { new Integer(1), b2 }; in test_deepEquals$Ljava_lang_ObjectLjava_lang_Object() local
2319 Object b[] = { b1, b2, b3 }; in test_deepEquals$Ljava_lang_ObjectLjava_lang_Object()
2339 Object[] b3 = { new Integer(1), b2 }; in test_deepHashCode$Ljava_lang_Object() local
2342 Object b[] = { b1, b2, b3 }; in test_deepHashCode$Ljava_lang_Object()