Searched refs:b4 (Results 1 – 4 of 4) sorted by relevance
/libcore/ojluni/src/test/java/util/BitSet/ |
D | BSMethods.java | 413 BitSet b4 = makeSet(2, 127); in testAnd() local 414 b4.and(makeSet(2, 64)); in testAnd() 415 checkSanity(b4); in testAnd() 416 if (!(b4.equals(makeSet(2)))) in testAnd() 503 BitSet b4 = makeSet(2, 64, 127); in testXor() local 504 b4.xor(makeSet(64, 127)); in testXor() 505 checkSanity(b4); in testXor() 506 if (!(b4.equals(makeSet(2)))) in testXor() 939 BitSet b4 = (BitSet) b2.clone(); in testLogicalIdentities() local 946 b3.and(b4); in testLogicalIdentities() [all …]
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
D | MessageDigest1Test.java | 203 byte[] b4 = { 1, 2, 3, 4 }; in test_isEqualLB$LB$() 205 assertTrue(MessageDigest.isEqual(b1, b4)); in test_isEqualLB$LB$()
|
/libcore/ojluni/src/main/java/java/util/ |
D | Base64.java | 795 int b4 = base64[src[sp++] & 0xff]; in decodeBlock() local 796 if ((b1 | b2 | b3 | b4) < 0) { // non base64 byte in decodeBlock() 799 int bits0 = b1 << 18 | b2 << 12 | b3 << 6 | b4; in decodeBlock() 924 private void writeb4(char b1, char b2, char b3, char b4) throws IOException { in writeb4() argument 928 buf[3] = (byte)b4; in writeb4()
|
/libcore/ojluni/src/main/java/java/nio/ |
D | Bits.java | 304 static private long makeLong(byte b7, byte b6, byte b5, byte b4, in makeLong() argument 310 (((long)b4 & 0xff) << 32) | in makeLong()
|