Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DBase64.java1026 private int wpos = 0; field in Base64.DecInputStream
1054 while (rpos - 8 >= wpos && pos != limit) { in leftovers()
1058 return pos - off != 0 || rpos - 8 >= wpos ? pos - off : -1; in leftovers()
1068 if (wpos == 18) { in eof()
1084 if (wpos >= 18 || wpos == 12 && is.read() != '=') { in padding()
1085 throw new IOException("Illegal base64 ending sequence:" + wpos); in padding()
1142 wpos = 24; in read()
1165 wpos -= 6; in read()
1166 bits |= v << wpos; in read()
1167 if (wpos != 0) { in read()
[all …]