Searched defs:byte2 (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharBig5_HKSCS.java46 protected char decodeDouble(int byte1, int byte2) { argument
47 char c = dec.decodeDouble(byte1, byte2);
49 c = dec.decodeBig5(byte1, byte2);
H A DByteToCharMS950_HKSCS.java45 protected char decodeDouble(int byte1, int byte2) { argument
46 char c = dec.decodeDouble(byte1, byte2);
48 c = dec.decodeBig5(byte1, byte2);
H A DByteToCharDoubleByte.java109 int byte1, byte2;
132 byte2 = input[byteOff + inputSize] & 0xff;
135 outputChar = getUnicode(byte1, byte2);
179 protected char getUnicode(int byte1, int byte2) { argument
183 || ((byte2 < start) || (byte2 > end)))
186 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
H A DByteToCharEUC_JP.java75 protected char getUnicode(int byte1, int byte2) { argument
77 return bcJIS0201.getUnicode(byte2 - 256);
82 || ((byte2 < start) || (byte2 > end)))
86 + (byte2 - start);
90 protected char decode0212(int byte1, int byte2) { argument
91 return bcJIS0212.getUnicode(byte1, byte2);
122 int byte1, byte2;
155 byte2 = input[byteOff + inputSize] & 0xff;
157 outputChar = decode0212(byte1-0x80, byte2
[all...]
H A DByteToCharEUC_JP_LINUX.java77 protected char getUnicode(int byte1, int byte2) { argument
79 return bcJIS0201.getUnicode(byte2 - 256);
84 || ((byte2 < start) || (byte2 > end)))
88 + (byte2 - start);
120 int byte1, byte2;
143 byte2 = input[byteOff + inputSize] & 0xff;
145 outputChar = getUnicode(byte1, byte2);
H A DByteToCharEUC_JP_Solaris.java87 protected char getUnicode(int byte1, int byte2) { argument
89 return bcJIS0201.getUnicode(byte2 - 256);
94 || ((byte2 < start) || (byte2 > end)))
97 char result = super.getUnicode(byte1, byte2);
102 + (byte2 - start);
107 protected char decode0212(int byte1, int byte2) { argument
108 return j0212Decoder.getUnicode(byte1, byte2);
139 int byte1, byte2;
172 byte2
[all...]
H A DByteToCharISO2022.java114 private char getUnicode(byte byte1, byte byte2, byte shiftFlag) argument
117 byte2 |= MSB;
119 byte[] tmpByte = {byte1,byte2};
H A DByteToCharISO2022CN.java110 private char getUnicode(byte byte1, byte byte2, byte shiftFlag) argument
113 byte2 |= MSB;
119 byte[] tmpByte = {byte1,byte2};
126 byte[] tmpByte = {(byte)0x8e, (byte)0xa2, byte1, byte2};
133 byte[] tmpByte = {(byte)0x8e, (byte)0xa3, byte1,byte2};
/openjdk7/jdk/src/share/instrument/
H A DEncodingSupport.c124 unsigned byte2, byte3, byte4, u21; local
127 byte2 = (unsigned char)string[++i];
132 u21 += (byte2 & 0x3F) << 12;
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCSDecoderMapping.java68 protected char decodeDouble(int byte1, int byte2) { argument
70 || ((byte2 < start) || (byte2 > end)))
73 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
H A DDoubleByteDecoder.java174 protected char decodeDouble(int byte1, int byte2) { argument
176 || ((byte2 < start) || (byte2 > end)))
179 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJIS_X_0212_MS5022X_Decoder.java42 protected char decodeDouble(int byte1, int byte2) { argument
44 || ((byte2 < _start) || (byte2 > _end)))
46 int n = (_index1[byte1] & 0xf)*(_end - _start + 1) + (byte2 - _start);
49 return (super.decodeDouble(byte1, byte2));
H A DDoubleByteDecoder.java174 protected char decodeDouble(int byte1, int byte2) { argument
176 || ((byte2 < start) || (byte2 > end)))
179 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
H A DEUC_JP_LINUX.java88 protected char decodeDouble(int byte1, int byte2) { argument
90 return decoderJ0201.decode(byte2 - 256);
94 || ((byte2 < start) || (byte2 > end)))
98 + (byte2 - start);
H A DEUC_JP_Open.java94 protected char decode0212(int byte1, int byte2) { argument
95 return decodeMappingJ0212.decodeDouble(byte1, byte2);
99 protected char decodeDouble(int byte1, int byte2) { argument
101 return decoderJ0201.decode(byte2 - 256);
106 || ((byte2 < start)
107 || (byte2 > end)))
110 char result = super.decodeDouble(byte1, byte2);
116 + (byte2 - start);
H A DISO2022_CN.java105 private char cnsDecode(byte byte1, byte byte2, byte SS) { argument
107 byte2 |= MSB;
116 byte2 & 0xff,
123 private char SODecode(byte byte1, byte byte2, byte SOD) { argument
125 byte2 |= MSB;
128 byte2 & 0xff);
131 byte2 & 0xff,
H A DEUC_JP.java94 protected char decode0212(int byte1, int byte2) { argument
95 return decoderJ0212.decodeDouble(byte1, byte2);
98 protected char decodeDouble(int byte1, int byte2) { argument
100 return decoderJ0201.decode(byte2 - 256);
105 || ((byte2 < start) || (byte2 > end)))
109 + (byte2 - start);
H A DGB18030.java12326 int byte2 = (offset & 0xFF);
12330 || ((byte2 < start) || (byte2 > end))) {
12334 int n = (decoderIndex1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
12338 protected char decodeDouble(int byte1, int byte2) { argument
12341 || ((byte2 < start) || (byte2 > end)))
12344 int n = (index1[byte1] & 0xf) * (end - start + 1) + (byte2 - start);
12371 int byte1 = 0 , byte2 = 0, byte3 = 0, byte4 = 0;
12385 byte2
[all...]
H A DISO2022.java94 private char decode(byte byte1, byte byte2, byte shiftFlag) argument
97 byte2 |= MSB;
99 byte[] tmpByte = { byte1,byte2 };
/openjdk7/jdk/src/solaris/native/sun/font/
H A DX11FontScaler.h42 unsigned char byte2; member in struct:__anon1022
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DOutputRecord.java434 byte byte1, byte2;
437 byte2 = v3Msg[v3CipherSpecOffset++];
438 v2CipherSpecLen += V3toV2CipherSuite(byte1, byte2);
440 byte1 == (byte)0x00 && byte2 == (byte)0xFF) {
499 private int V3toV2CipherSuite(byte byte1, byte byte2) { argument
502 buf[count++] = byte2;
504 if (((byte2 & 0xff) > 0xA) ||
505 (V3toV2CipherMap1[byte2] == -1)) {
509 buf[count++] = (byte)V3toV2CipherMap1[byte2];
511 buf[count++] = (byte)V3toV2CipherMap3[byte2];
[all...]
/openjdk7/jdk/src/share/npt/
H A Dutf.c227 unsigned byte2, byte3, byte4, u21; local
230 byte2 = (unsigned char)string[++i];
235 u21 += (byte2 & 0x3F) << 12;
268 unsigned byte1, byte2, byte3, byte4, byte5, byte6; local
278 byte2 = (unsigned char)string[++i];
279 if ( byte1 != 0xC0 || byte2 != 0x80 ) {
290 byte2 = (unsigned char)string[++i];
294 if ( (i+3) < length && byte1 == 0xED && (byte2 & 0xF0) == 0xA0 ) {
335 unsigned byte1, byte2, byte3, byte4, byte5, byte6; local
342 byte2
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DEUC_TW_OLD.java10555 protected char convToUnicode(byte byte1, byte byte2, String table) argument
10559 if ((byte1 & 0xff) < 0xa1 || (byte2 & 0xff) < 0xa1 ||
10560 (byte1 & 0xff) > 0xfe || (byte2 & 0xff) > 0xfe)
10562 index = (((byte1 & 0xff) - 0xa1) * 94) + (byte2 & 0xff) - 0xa1;
10568 protected char[] convToSurrogate(byte byte1, byte byte2, String table) argument
10573 if ((byte1 & 0xff) < 0xa1 || (byte2 & 0xff) < 0xa1 ||
10574 (byte1 & 0xff) > 0xfe || (byte2 & 0xff) > 0xfe)
10576 index = (((byte1 & 0xff) - 0xa1) * 94) + (byte2 & 0xff) - 0xa1;
10605 byte byte2;
10621 byte2
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp4214 int byte2 = ((~nds_enc) & 0xf) << 3; local
4215 byte2 |= (vex_w ? VEX_W : 0) | (vector256 ? 4 : 0) | pre;
4216 emit_byte(byte2);

Completed in 167 milliseconds