Searched refs:inCursor (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DBase64.java64 int inCursor = 0;
66 int byte0 = a[inCursor++] & 0xff;
67 int byte1 = a[inCursor++] & 0xff;
68 int byte2 = a[inCursor++] & 0xff;
77 int byte0 = a[inCursor++] & 0xff;
84 int byte1 = a[inCursor++] & 0xff;
90 // assert inCursor == a.length;
166 int inCursor = 0, outCursor = 0;
168 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
169 int ch1 = base64toInt(s.charAt(inCursor
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPacketStream.java34 private int inCursor = 0; field in class:PacketStream
297 byte ret = pkt.data[inCursor];
298 inCursor += 1;
316 b1 = pkt.data[inCursor++] & 0xff;
317 b2 = pkt.data[inCursor++] & 0xff;
328 b1 = pkt.data[inCursor++] & 0xff;
329 b2 = pkt.data[inCursor++] & 0xff;
340 b1 = pkt.data[inCursor++] & 0xff;
341 b2 = pkt.data[inCursor++] & 0xff;
342 b3 = pkt.data[inCursor
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DBasicAuthenticator.java134 int inCursor = 0;
136 int byte0 = a[inCursor++] & 0xff;
137 int byte1 = a[inCursor++] & 0xff;
138 int byte2 = a[inCursor++] & 0xff;
147 int byte0 = a[inCursor++] & 0xff;
154 int byte1 = a[inCursor++] & 0xff;
160 // assert inCursor == a.length;
236 int inCursor = 0, outCursor = 0;
238 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
239 int ch1 = base64toInt(s.charAt(inCursor
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectorServer.java776 int inCursor = 0;
778 int byte0 = a[inCursor++] & 0xff;
779 int byte1 = a[inCursor++] & 0xff;
780 int byte2 = a[inCursor++] & 0xff;
789 int byte0 = a[inCursor++] & 0xff;
796 int byte1 = a[inCursor++] & 0xff;
802 // assert inCursor == a.length;
H A DRMIConnector.java2415 int inCursor = 0, outCursor = 0;
2417 int ch0 = base64toInt(s.charAt(inCursor++));
2418 int ch1 = base64toInt(s.charAt(inCursor++));
2419 int ch2 = base64toInt(s.charAt(inCursor++));
2420 int ch3 = base64toInt(s.charAt(inCursor++));
2428 int ch0 = base64toInt(s.charAt(inCursor++));
2429 int ch1 = base64toInt(s.charAt(inCursor++));
2433 int ch2 = base64toInt(s.charAt(inCursor++));
2437 // assert inCursor == s.length()-missingBytesInLastGroup;

Completed in 50 milliseconds