Searched defs:inOff (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharASCII.java50 public int convert(byte[] input, int inOff, int inEnd, argument
57 byteOff = inOff;
H A DByteToCharISO8859_1.java50 public int convert(byte[] input, int inOff, int inEnd, argument
55 int bound = inOff + (outEnd - outOff);
59 int bytesWritten = inEnd - inOff;
64 while(inOff < bound) {
65 output[outOff++] = (char) (0xff & input[inOff++]);
69 byteOff = inOff;
H A DByteToCharUTF8.java60 public int convert(byte[] input, int inOff, int inEnd, argument
71 newBuf = new byte[inEnd - inOff + savedSize];
75 System.arraycopy(input, inOff, newBuf, savedSize, inEnd - inOff);
77 inOff = 0;
84 byteOff = inOff;
H A DByteToCharSingleByte.java75 public int convert(byte[] input, int inOff, int inEnd, argument
85 byteOff = inOff;
H A DCharToByteASCII.java53 public int convert(char[] input, int inOff, int inEnd, argument
66 charOff = inOff;
72 if (input[inOff] >= 0xdc00 && input[inOff] <= 0xdfff) {
H A DCharToByteDBCS_ASCII.java67 public int convert(char[] input, int inOff, int inEnd, argument
76 charOff = inOff;
H A DCharToByteEUC_JP.java86 public int convert(char[] input, int inOff, int inEnd, argument
98 charOff = inOff;
104 if (input[inOff] >= 0xdc00 && input[inOff] <= 0xdfff) {
H A DCharToByteEUC_JP_LINUX.java85 public int convert(char[] input, int inOff, int inEnd, argument
97 charOff = inOff;
103 if (input[inOff] >= 0xdc00 && input[inOff] <= 0xdfff) {
H A DCharToByteEUC_TW.java56 public int convert(char[] input, int inOff, int inEnd, argument
69 for (charOff = inOff; charOff < inEnd; charOff++) {
H A DCharToByteISO8859_1.java52 public int convert(char[] input, int inOff, int inEnd, argument
67 charOff = inOff;
73 if (input[inOff] >= 0xdc00 && input[inOff] <= 0xdfff) {
H A DCharToByteUTF8.java62 public int convert(char[] input, int inOff, int inEnd, argument
71 charOff = inOff;
77 if (input[inOff] >= 0xdc00 && input[inOff] <= 0xdfff) {
80 + (input[inOff] - 0xdc00) + 0x10000;
H A DByteToCharCp33722.java94 public int convert(byte[] input, int inOff, int inEnd, argument
103 byteOff = inOff;
H A DByteToCharDBCS_ASCII.java68 public int convert(byte[] input, int inOff, int inEnd, argument
77 byteOff = inOff;
H A DByteToCharDBCS_EBCDIC.java77 public int convert(byte[] input, int inOff, int inEnd, argument
86 byteOff = inOff;
H A DByteToCharDoubleByte.java95 public int convert(byte[] input, int inOff, int inEnd, argument
105 byteOff = inOff;
H A DByteToCharEUC.java75 public int convert(byte[] input, int inOff, int inEnd, argument
84 byteOff = inOff;
H A DByteToCharEUC2.java82 public int convert(byte[] input, int inOff, int inEnd, argument
89 byteOff = inOff;
H A DByteToCharEUC_JP.java108 public int convert(byte[] input, int inOff, int inEnd, argument
118 byteOff = inOff;
H A DByteToCharEUC_JP_LINUX.java106 public int convert(byte[] input, int inOff, int inEnd, argument
116 byteOff = inOff;
H A DByteToCharEUC_JP_Solaris.java125 public int convert(byte[] input, int inOff, int inEnd, argument
135 byteOff = inOff;
H A DByteToCharEUC_TW.java74 public int convert(byte[] input, int inOff, int inEnd, argument
82 byteOff = inOff;
H A DByteToCharGB18030.java88 public int convert(byte[] input, int inOff, int inEnd, argument
97 int readOff = byteOff = inOff;
112 byte[] newBuf = new byte[inEnd - inOff + savedSize];
116 System.arraycopy(input, inOff, newBuf, savedSize, inEnd - inOff);
119 inOff = 0;
125 readOff = inOff;
H A DByteToCharISO2022JP.java65 public int convert(byte[] input, int inOff, int inEnd, argument
75 int readOff = byteOff = inOff;
93 if ((inEnd - inOff) == 1 && savedSize == 1 &&
101 byte[] newBuf = new byte[inEnd - inOff + savedSize];
105 System.arraycopy(input, inOff, newBuf, savedSize, inEnd - inOff);
108 inOff = 0;
114 readOff = inOff;
H A DCharToByteDBCS_EBCDIC.java83 public int convert(char[] input, int inOff, int inEnd, argument
92 charOff = inOff;
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DElectronicCodeBook.java119 void encrypt(byte[] in, int inOff, int len, byte[] out, int outOff) { argument
121 embeddedCipher.encryptBlock(in, inOff, out, outOff);
123 inOff += blockSize;
146 * @param inOff the offset in <code>cipherOffset</code>
151 void decrypt(byte[] in, int inOff, int len, byte[] out, int outOff) { argument
153 embeddedCipher.decryptBlock(in, inOff, out, outOff);
155 inOff += blockSize;

Completed in 34 milliseconds

12