Searched refs:firstByte (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharEUC_TW.java43 private byte firstByte = 0, state = G0; field in class:ByteToCharEUC_TW
56 firstByte = 0;
67 firstByte = 0;
98 firstByte = input[byteOff];
106 outputChar = dec.toUnicode(firstByte & 0xff,
113 firstByte = 0;
131 firstByte = input[byteOff];
141 outputChar = dec.toUnicode(firstByte & 0xff,
148 firstByte = 0;
H A DByteToCharEUC.java37 private int firstByte, state; field in class:ByteToCharEUC
108 firstByte = byte1;
121 outputChar = mappingTableG1.charAt(((firstByte - 0xa1) * 94) + byte1 - 0xa1);
H A DByteToCharCp33722.java42 private int firstByte, state; field in class:ByteToCharCp33722
124 firstByte = byte1; // save the 1st byte
135 outputChar = mappingTableG1.charAt(((firstByte - 0xa1) * 94) + byte1 - 0xa1);
153 firstByte = byte1;
163 outputChar = mappingTableG3.charAt(((firstByte - 0xa1) * 94) + byte1 - 0xa1);
H A DByteToCharCp964.java44 private int firstByte, state; field in class:ByteToCharCp964
131 firstByte = byte1;
142 outputChar = mappingTableG1.charAt(((firstByte - 0xa1) * 94) + byte1 - 0xa1);
169 firstByte = byte1;
179 outputChar = mappingTableG2.charAt(((firstByte - 0xa1) * 94) + byte1 - 0xa1);
H A DByteToCharEUC2.java37 private int firstByte, state; field in class:ByteToCharEUC2
108 firstByte = byte1;
118 outputChar = decodeDouble(firstByte, byte1);
H A DByteToCharISO2022.java66 private byte state, firstByte; field in class:ByteToCharISO2022
74 firstByte = 0;
258 firstByte = remainByte[0];
262 output[charOff] = getUnicode(firstByte, remainByte[0],
H A DByteToCharISO2022CN.java62 private byte state, firstByte; field in class:ByteToCharISO2022CN
70 firstByte = 0;
253 firstByte = remainByte[0];
257 output[charOff] = getUnicode(firstByte, remainByte[0],
/openjdk7/jdk/src/share/classes/sun/font/
H A DCMap.java316 int firstByte;
319 firstByte = (i >> 8 & 0xff);
320 if (firstByte >= 0xa1 && firstByte <= 0xdf) {
325 inputBytes[j++] = (byte)firstByte;
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DIBM33722.java116 private int firstByte, state; field in class:IBM33722.Decoder

Completed in 69 milliseconds