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

/dalvik/libcore/sql/src/test/java/tests/support/
H A DSupport_SQL.java84 public static boolean isEqual(byte[] b1, int off1, byte[] b2, int off2, argument
87 if (b1[i + off1] != b2[i + off2])
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaBasicBlock.java985 public int compare(SsaBasicBlock b1, SsaBasicBlock b2) { argument
986 int label1 = b1.ropLabel;
/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSMemory.cpp175 jbyte b1 = *src++; local
176 *dst++ = b1;
187 jbyte b1 = *src++; local
192 *dst++ = b1;
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DObjectInputStreamTest.java779 assertEquals(5, ((A1) deserialized).b1.i);
1092 B1 b1 = new B1(); field in class:ObjectInputStreamTest.A1
1094 B1 b2 = b1;
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DCipherSuite.java357 * @param b1
361 public static CipherSuite getByCode(byte b1, byte b2) { argument
362 if (b1 != 0 || (b2 & 0xFF) > cuitesByCode.length) {
364 return new CipherSuite("UNKNOUN_" + b1 + "_" + b2, false, 0, "",
365 "", new byte[] { b1, b2 });
374 * @param b1
379 public static CipherSuite getByCode(byte b1, byte b2, byte b3) { argument
380 if (b1 == 0 && b2 == 0) {
387 return new CipherSuite("UNKNOUN_" + b1 + "_" + b2 + "_" + b3, false, 0,
388 "", "", new byte[] { b1, b
[all...]

Completed in 676 milliseconds