Searched refs:inArr (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/test/compiler/6732154/
H A DTest6732154.java35 private byte[] ascii85Encode(byte[] inArr) { argument
36 byte[] outArr = new byte[((inArr.length+4) * 5 / 4) + 2];
47 while (i+3 < inArr.length) {
48 val = ((long)((inArr[i++]&0xff))<<24) +
49 ((long)((inArr[i++]&0xff))<<16) +
50 ((long)((inArr[i++]&0xff))<< 8) +
51 ((long)(inArr[i++]&0xff));
64 if (i < inArr.length) {
65 int n = inArr.length - i; // n bytes remain to be written
68 while (i < inArr
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPrinterJob.java1177 char []inArr = str.toCharArray();
1178 char []outArr = new char[inArr.length+count];
1180 for (int i=0;i<inArr.length;i++) {
1181 if (inArr[i] == '(' || inArr[i] == ')') {
1184 outArr[pos++] = inArr[i];
1920 * Array data to encode is inArr. Encoded data is written to outArr
1934 private byte[] rlEncode(byte[] inArr) { argument
1940 byte[] outArr = new byte[(inArr.length * 2) +2];
1941 while (inIndex < inArr
1982 ascii85Encode(byte[] inArr) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintServiceLookup.java612 private PrintService[] copyOf(PrintService[] inArr) { argument
613 if (inArr == null || inArr.length == 0) {
614 return inArr;
616 PrintService []outArr = new PrintService[inArr.length];
617 System.arraycopy(inArr, 0, outArr, 0, inArr.length);

Completed in 35 milliseconds