Searched defs:b2 (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
987 int label2 = b2.ropLabel;
/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSMemory.cpp188 jbyte b2 = *src++; local
191 *dst++ = b2;
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DObjectInputStreamTest.java1094 B1 b2 = b1; field in class:ObjectInputStreamTest.A1
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DCipherSuite.java358 * @param b2
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 });
367 return cuitesByCode[b2];
375 * @param b2
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
[all...]

Completed in 156 milliseconds