Searched refs:lowByte (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DX509Factory.java654 int lowByte = is.read();
655 if (lowByte == -1) {
659 bout.write(lowByte);
660 length = (highByte << 8) | lowByte;
664 int lowByte = is.read();
665 if (lowByte == -1) {
670 bout.write(lowByte);
671 length = (highByte << 16) | (midByte << 8) | lowByte;
676 int lowByte = is.read();
677 if (lowByte
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAlawCodec.java274 int lowByte = 1; field in class:AlawCodec.AlawCodecStream
309 lowByte = 1;
314 lowByte = 0;
388 sample |= (short)( (tempBuffer[i + lowByte]) & 0xFF);
H A DUlawCodec.java260 int lowByte = 1; field in class:UlawCodec.UlawCodecStream
294 lowByte = 1;
299 lowByte = 0;
365 sample |= (short)( (short) (tempBuffer[i + lowByte]) & 0xFF);
/openjdk7/jdk/src/share/classes/sun/font/
H A DCMap.java786 char lowByte = (char)(charCode & 0xff);
791 mapMe = lowByte;
795 mapMe = lowByte;
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharGB18030.java222 int lowByte = (offset & 0xFF);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DGB18030.java12428 int lowByte = (offset & 0xFF);
12531 int lowByte = (offset & 0xFF);
/openjdk7/jdk/src/solaris/classes/java/util/prefs/
H A DFileSystemPreferences.java880 int lowByte = a[i++] & 0xff;
881 result.append((char) ((highByte << 8) | lowByte));

Completed in 76 milliseconds