OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:base64toint
(Results
1 - 1
of
1
) sorted by null
/libcore/ojluni/src/main/java/java/util/prefs/
Base64.java
147
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) {
214
private static final byte
base64ToInt
[] =
[
all
...]
Completed in 47 milliseconds