Searched refs:nextin (Results 1 – 1 of 1) sorted by relevance
873 private int nextin = 18; // next available "off" in "bits" for input; field in Base64.DecInputStream916 if (nextin != 18) { in read()917 if (nextin == 12) in read()923 if (nextin == 0) { // only one padding byte in read()942 if (nextin == 18 || nextin == 12 || in read()943 nextin == 6 && is.read() != '=') { in read()944 throw new IOException("Illegal base64 ending sequence:" + nextin); in read()948 if (nextin == 0) { // only one padding byte in read()966 bits |= (v << nextin); in read()967 if (nextin == 0) { in read()[all …]