Home
last modified time | relevance | path

Searched refs:byte1 (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/prefs/
DBase64.java67 int byte1 = a[inCursor++] & 0xff; in byteArrayToBase64() local
70 result.append(intToAlpha[(byte0 << 4)&0x3f | (byte1 >> 4)]); in byteArrayToBase64()
71 result.append(intToAlpha[(byte1 << 2)&0x3f | (byte2 >> 6)]); in byteArrayToBase64()
84 int byte1 = a[inCursor++] & 0xff; in byteArrayToBase64() local
85 result.append(intToAlpha[(byte0 << 4)&0x3f | (byte1 >> 4)]); in byteArrayToBase64()
86 result.append(intToAlpha[(byte1 << 2)&0x3f]); in byteArrayToBase64()
/libcore/ojluni/src/main/java/sun/security/ssl/
DOutputRecord.java434 byte byte1, byte2; in V3toV2ClientHello()
436 byte1 = v3Msg[v3CipherSpecOffset++]; in V3toV2ClientHello()
438 v2CipherSpecLen += V3toV2CipherSuite(byte1, byte2); in V3toV2ClientHello()
440 byte1 == (byte)0x00 && byte2 == (byte)0xFF) { in V3toV2ClientHello()
499 private int V3toV2CipherSuite(byte byte1, byte byte2) { in V3toV2CipherSuite() argument
501 buf[count++] = byte1; in V3toV2CipherSuite()
/libcore/luni/src/test/java/libcore/xml/
DXsltXPathConformanceTestSuite.java587 int byte1 = in.read(); in fileToString() local
589 if (byte1 == 0xFF && byte2 == 0xFE) { in fileToString()
591 } else if (byte1 == 0xFF && byte2 == 0xFF) { in fileToString()
595 if (byte1 == 0xEF && byte2 == 0xBB && byte3 == 0xBF) { in fileToString()