Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/prefs/
DBase64.java64 int inCursor = 0; in byteArrayToBase64() local
66 int byte0 = a[inCursor++] & 0xff; in byteArrayToBase64()
67 int byte1 = a[inCursor++] & 0xff; in byteArrayToBase64()
68 int byte2 = a[inCursor++] & 0xff; in byteArrayToBase64()
77 int byte0 = a[inCursor++] & 0xff; in byteArrayToBase64()
84 int byte1 = a[inCursor++] & 0xff; in byteArrayToBase64()
166 int inCursor = 0, outCursor = 0; in base64ToByteArray() local
168 int ch0 = base64toInt(s.charAt(inCursor++), alphaToInt); in base64ToByteArray()
169 int ch1 = base64toInt(s.charAt(inCursor++), alphaToInt); in base64ToByteArray()
170 int ch2 = base64toInt(s.charAt(inCursor++), alphaToInt); in base64ToByteArray()
[all …]