Searched defs:outputByte (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteSJIS.java40 protected int convSingleByte(char inputChar, byte[] outputByte) { argument
45 outputByte[0] = (byte)inputChar;
52 outputByte[0] = b;
H A DCharToBytePCK.java48 protected int convSingleByte(char inputChar, byte[] outputByte) { argument
53 outputByte[0] = (byte)inputChar;
60 outputByte[0] = b;
H A DCharToByteDBCS_ASCII.java34 private byte[] outputByte = new byte[2]; field in class:CharToByteDBCS_ASCII
108 outputByte[0] = 0x00;
109 outputByte[1] = subBytes[0];
112 outputByte[0] = subBytes[0];
113 outputByte[1] = subBytes[1];
138 outputByte[0] = 0x00;
139 outputByte[1] = subBytes[0];
141 outputByte[0] = subBytes[0];
142 outputByte[1] = subBytes[1];
149 outputByte[
[all...]
H A DCharToByteEUC_JP.java40 protected int convSingleByte(char inputChar, byte[] outputByte) { argument
44 outputByte[0] = (byte)0;
52 outputByte[0] = b;
55 outputByte[0] = (byte)0x8E;
56 outputByte[1] = b;
92 byte[] outputByte; // Output byte written to output
118 outputByte = tmpbuf;
135 outputByte = subBytes;
153 outputSize = convSingleByte(inputChar, outputByte);
158 outputByte[
[all...]
H A DCharToByteEUC_JP_LINUX.java43 protected int convSingleByte(char inputChar, byte[] outputByte) { argument
47 outputByte[0] = (byte)0;
55 outputByte[0] = b;
58 outputByte[0] = (byte)0x8E;
59 outputByte[1] = b;
91 byte[] outputByte; // Output byte written to output
117 outputByte = tmpbuf;
134 outputByte = subBytes;
152 outputSize = convSingleByte(inputChar, outputByte);
156 outputByte[
[all...]
H A DCharToByteDBCS_EBCDIC.java40 private byte[] outputByte = new byte[2]; field in class:CharToByteDBCS_EBCDIC
125 outputByte[0] = 0x00;
126 outputByte[1] = subBytes[0];
129 outputByte[0] = subBytes[0];
130 outputByte[1] = subBytes[1];
155 outputByte[0] = 0x00;
156 outputByte[1] = subBytes[0];
158 outputByte[0] = subBytes[0];
159 outputByte[1] = subBytes[1];
166 outputByte[
[all...]
H A DCharToByteDoubleByte.java86 byte[] outputByte; // Output byte written to output
112 outputByte = tmpbuf;
129 outputByte = subBytes;
147 outputSize = convSingleByte(inputChar, outputByte);
151 outputByte[0] = (byte) ((ncode & 0xff00) >> 8);
152 outputByte[1] = (byte) (ncode & 0xff);
156 outputByte = subBytes;
172 output[byteOff++] = outputByte[i];
216 protected int convSingleByte(char inputChar, byte[] outputByte) { argument
218 outputByte[
[all...]
H A DCharToByteEUC.java31 private byte[] outputByte; field in class:CharToByteEUC
77 outputByte = workByte;
112 outputByte = subBytes;
157 outputByte[0] = (byte)((aChar & 0xff00)>>8);
158 outputByte[1] = (byte)(aChar & 0x00ff);
160 outputByte[2] = (byte)((aChar & 0xff00)>>8);
161 outputByte[3] = (byte)(aChar & 0x00ff);
166 for (i = 0; i < outputByte.length; i++) {
167 if (outputByte[i] != 0x00) {
176 outputByte
[all...]
H A DCharToByteEUC_JP_Solaris.java50 protected int convSingleByte(char inputChar, byte[] outputByte) { argument
54 outputByte[0] = (byte)0;
62 outputByte[0] = b;
65 outputByte[0] = (byte)0x8E;
66 outputByte[1] = b;
104 byte[] outputByte; // Output byte written to output
130 outputByte = tmpbuf;
147 outputByte = subBytes;
165 outputSize = convSingleByte(inputChar, outputByte);
170 outputByte[
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DSimpleEUCEncoder.java52 private byte[] outputByte = new byte[4]; field in class:SimpleEUCEncoder
147 outputByte[0] = (byte)((aChar & 0xff00)>>8);
148 outputByte[1] = (byte)(aChar & 0x00ff);
150 outputByte[2] = (byte)((aChar & 0xff00)>>8);
151 outputByte[3] = (byte)(aChar & 0x00ff);
153 for (i = 0; i < outputByte.length; i++) {
154 if (outputByte[i] != 0x00) {
166 for (spaceNeeded = outputByte.length;
168 if (outputByte[oindex++] != 0x00 )
175 for (i = outputByte
[all...]
H A DEUC_JP_LINUX.java236 protected int encodeSingle(char inputChar, byte[] outputByte) { argument
240 outputByte[0] = (byte)0;
248 outputByte[0] = b;
251 outputByte[0] = (byte)0x8e;
252 outputByte[1] = b;
278 final byte[] outputByte = new byte[2];
290 int outputSize = encodeSingle(c, outputByte);
294 outputByte[0] = (byte) ((ncode & 0xff00) >> 8);
295 outputByte[1] = (byte) (ncode & 0xff);
306 da[dp++] = outputByte[
[all...]
H A DEUC_JP_Open.java141 protected int encodeSingle(char inputChar, byte[] outputByte) { argument
145 outputByte[0] = (byte)0;
153 outputByte[0] = b;
157 outputByte[0] = (byte)0x8e;
158 outputByte[1] = b;
H A DEUC_JP.java264 protected int encodeSingle(char inputChar, byte[] outputByte) { argument
268 outputByte[0] = (byte)0;
276 outputByte[0] = b;
280 outputByte[0] = (byte)0x8e;
281 outputByte[1] = b;
312 byte[] outputByte;
318 outputByte = tmpBuf;
327 outputSize = encodeSingle(c, outputByte);
333 outputByte[0] = (byte) ((ncode & 0xff00) >> 8);
334 outputByte[
[all...]

Completed in 39 milliseconds