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

/forgerock/authenticator-android-v2/app/src/main/java/com/google/android/apps/authenticator/
H A DBase32String.java51 private int SHIFT; field in class:Base32String
60 SHIFT = Integer.numberOfTrailingZeros(DIGITS.length);
86 int outLength = encodedLength * SHIFT / 8;
95 buffer <<= SHIFT;
97 bitsLeft += SHIFT;
105 // if (next != outLength || bitsLeft >= SHIFT) {
120 // SHIFT is the number of bits per output character, so the length of the
121 // output is the length of the input multiplied by 8/SHIFT, rounded up.
127 int outputLength = (data.length * 8 + SHIFT - 1) / SHIFT;
[all...]

Completed in 46 milliseconds