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

/libcore/ojluni/src/main/java/java/util/
H A DBase64.java870 private int nextin = 18; // next available "off" in "bits" for input; field in class:Base64.DecInputStream
913 if (nextin != 18) {
914 if (nextin == 12)
920 if (nextin == 0) { // only one padding byte
939 if (nextin == 18 || nextin == 12 ||
940 nextin == 6 && is.read() != '=') {
941 throw new IOException("Illegal base64 ending sequence:" + nextin);
945 if (nextin == 0) { // only one padding byte
963 bits |= (v << nextin);
[all...]

Completed in 31 milliseconds