Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DBase64.java875 private int nextout = -8; // next available "off" in "bits" for output; field in Base64.DecInputStream
897 if (eof && nextout < 0) // eof and no leftover in read()
902 if (nextout >= 0) { // leftover output byte(s) in bits buf in read()
906 b[off++] = (byte)(bits >> nextout); in read()
908 nextout -= 8; in read()
909 } while (nextout >= 0); in read()
926 nextout = 0; in read()
951 nextout = 0; in read()
969 nextout = 16; in read()
970 while (nextout >= 0) { in read()
[all …]