Searched refs:byte1 (Results 1 – 3 of 3) sorted by relevance
67 int byte1 = a[inCursor++] & 0xff; in byteArrayToBase64() local70 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() local85 result.append(intToAlpha[(byte0 << 4)&0x3f | (byte1 >> 4)]); in byteArrayToBase64()86 result.append(intToAlpha[(byte1 << 2)&0x3f]); in byteArrayToBase64()
434 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() argument501 buf[count++] = byte1; in V3toV2CipherSuite()
587 int byte1 = in.read(); in fileToString() local589 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()