Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DBase64.java873 private int nextin = 18; // next available "off" in "bits" for input; field in Base64.DecInputStream
916 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 …]