Searched defs:b1 (Results 1 - 6 of 6) sorted by last modified time

/libcore/benchmarks/src/benchmarks/regression/
H A DEqualsHashCodeBenchmark.java43 Object b1; field in class:EqualsHashCodeBenchmark
49 b1 = type.newInstance("http://developer.android.com/reference/java/net/URI.html");
55 a1.equals(b1);
57 b1.equals(b2);
64 b1.hashCode();
/libcore/crypto/src/main/java/org/conscrypt/
H A DCipherSuite.java808 public static CipherSuite getByCode(byte b1, byte b2) { argument
809 int i1 = b1 & 0xff;
816 null, null, new byte[] { b1, b2 });
823 public static CipherSuite getByCode(byte b1, byte b2, byte b3) { argument
824 int i1 = b1 & 0xff;
832 null, null, null, new byte[] { b1, b2, b3 });
/libcore/luni/src/main/native/
H A Djava_nio_charset_Charsets.cpp221 jbyte b1 = (ch >> 18) | 0xf0; local
225 if (!out.append(b1) || !out.append(b2) || !out.append(b3) || !out.append(b4)) {
230 jbyte b1 = (ch >> 12) | 0xe0; local
233 if (!out.append(b1) || !out.append(b2) || !out.append(b3)) {
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java116 B1 b1 = new B1(); field in class:ObjectInputStreamTest.A1
118 B1 b2 = b1;
137 assertEquals(5, ((A1) deserialized).b1.i);
/libcore/luni/src/test/java/tests/api/java/io/
H A DObjectInputStreamTest.java386 assertEquals(5, ((A1) deserialized).b1.i);
592 B1 b1 = new B1(); field in class:ObjectInputStreamTest.A1
594 B1 b2 = b1;
/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])

Completed in 148 milliseconds