Searched defs:alphaToInt (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DBase64.java147 byte[] alphaToInt = (alternate ? altBase64ToInt : base64ToInt);
168 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
169 int ch1 = base64toInt(s.charAt(inCursor++), alphaToInt);
170 int ch2 = base64toInt(s.charAt(inCursor++), alphaToInt);
171 int ch3 = base64toInt(s.charAt(inCursor++), alphaToInt);
179 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
180 int ch1 = base64toInt(s.charAt(inCursor++), alphaToInt);
184 int ch2 = base64toInt(s.charAt(inCursor++), alphaToInt);
200 private static int base64toInt(char c, byte[] alphaToInt) { argument
201 int result = alphaToInt[
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DBasicAuthenticator.java217 byte[] alphaToInt = (alternate ? altBase64ToInt : base64ToInt);
238 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
239 int ch1 = base64toInt(s.charAt(inCursor++), alphaToInt);
240 int ch2 = base64toInt(s.charAt(inCursor++), alphaToInt);
241 int ch3 = base64toInt(s.charAt(inCursor++), alphaToInt);
249 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt);
250 int ch1 = base64toInt(s.charAt(inCursor++), alphaToInt);
254 int ch2 = base64toInt(s.charAt(inCursor++), alphaToInt);
270 private static int base64toInt(char c, byte[] alphaToInt) { argument
271 int result = alphaToInt[
[all...]

Completed in 34 milliseconds