Searched defs:b1 (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
H A DChannelInputStream.java79 private byte[] b1 = null; field in class:ChannelInputStream
86 if (b1 == null)
87 b1 = new byte[1];
88 int n = this.read(b1);
90 return b1[0] & 0xff;
/libcore/benchmarks/src/benchmarks/regression/
H A DEqualsHashCodeBenchmark.java45 Object b1; field in class:EqualsHashCodeBenchmark
55 b1 = type.newInstance("http://developer.android.com/reference/java/net/URI.html");
65 a1.equals(b1);
67 b1.equals(b2);
74 b1.hashCode();
/libcore/luni/src/test/java/tests/support/
H A DSupport_SQL.java91 public static boolean isEqual(byte[] b1, int off1, byte[] b2, int off2, argument
94 if (b1[i + off1] != b2[i + off2])
/libcore/ojluni/src/main/java/java/util/
H A DBase64.java429 int b1 = src[sp++] & 0xff;
430 dst[dp++] = (byte)base64[(b0 << 4) & 0x3f | (b1 >> 4)];
431 dst[dp++] = (byte)base64[(b1 << 2) & 0x3f];
755 private int b0, b1, b2; field in class:Base64.EncOutputStream
797 b1 = b[off++] & 0xff;
808 out.write(base64[(b0 << 4) & 0x3f | (b1 >> 4)]);
809 out.write(base64[(b1 << 2) & 0x3f | (b2 >> 6)]);
830 b1 = b[off++] & 0xff;
849 out.write(base64[(b0 << 4) & 0x3f | (b1 >> 4)]);
850 out.write(base64[(b1 <<
[all...]
/libcore/ojluni/src/main/java/java/nio/
H A DBits.java65 static private char makeChar(byte b1, byte b0) { argument
66 return (char) ((b1 << 8) | (b0 & 0xff));
142 static private short makeShort(byte b1, byte b0) { argument
143 return (short) ((b1 << 8) | (b0 & 0xff));
219 static private int makeInt(byte b3, byte b2, byte b1, byte b0) { argument
222 ((b1 & 0xff) << 8) |
324 byte b3, byte b2, byte b1, byte b0) {
331 (((long) b1 & 0xff) << 8) |
323 makeLong(byte b7, byte b6, byte b5, byte b4, byte b3, byte b2, byte b1, byte b0) argument
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java108 B1 b1 = new B1(); field in class:ObjectInputStreamTest.A1
110 B1 b2 = b1;
423 assertEquals(5, ((A1) deserialized).b1.i);

Completed in 156 milliseconds