Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DBase64.java811 int shiftto = 18; // pos of first byte of 4-byte atom in decode0() local
814 if (shiftto == 18 && sp < sl - 4) { // fast path in decode0()
837 if (shiftto == 6 && (sp == sl || src[sp++] != '=') || in decode0()
838 shiftto == 18) { in decode0()
851 bits |= (b << shiftto); in decode0()
852 shiftto -= 6; in decode0()
853 if (shiftto < 0) { in decode0()
857 shiftto = 18; in decode0()
862 if (shiftto == 6) { in decode0()
864 } else if (shiftto == 0) { in decode0()
[all …]