Searched defs:b2 (Results 1 - 5 of 5) sorted by relevance

/libcore/benchmarks/src/benchmarks/regression/
H A DEqualsHashCodeBenchmark.java46 Object b2; field in class:EqualsHashCodeBenchmark
56 b2 = type.newInstance("http://developer.android.com/reference/java/net/URI.html");
67 b1.equals(b2);
/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.java755 private int b0, b1, b2; field in class:Base64.EncOutputStream
804 b2 = b[off++] & 0xff;
809 out.write(base64[(b1 << 2) & 0x3f | (b2 >> 6)]);
810 out.write(base64[b2 & 0x3f]);
/libcore/ojluni/src/main/java/java/nio/
H A DBits.java208 static private int makeInt(byte b3, byte b2, byte b1, byte b0) { argument
210 ((b2 & 0xff) << 16) |
302 byte b3, byte b2, byte b1, byte b0)
309 (((long)b2 & 0xff) << 16) |
301 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.java110 B1 b2 = b1; field in class:ObjectInputStreamTest.A1

Completed in 365 milliseconds