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

/libcore/ojluni/src/main/java/java/util/
H A DBase64.java872 private int nextout = -8; // next available "off" in "bits" for output; field in class:Base64.DecInputStream
894 if (eof && nextout < 0) // eof and no leftover
899 if (nextout >= 0) { // leftover output byte(s) in bits buf
903 b[off++] = (byte)(bits >> nextout);
905 nextout -= 8;
906 } while (nextout >= 0);
923 nextout = 0;
948 nextout = 0;
966 nextout = 16;
967 while (nextout >
[all...]

Completed in 6 milliseconds