Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for validPadding (0.15 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/io/BaseEncoding.java

          this.mask = chars.length - 1;
    
          this.decodabet = decodabet;
    
          boolean[] validPadding = new boolean[charsPerChunk];
          for (int i = 0; i < bytesPerChunk; i++) {
            validPadding[divide(i * 8, bitsPerChar, CEILING)] = true;
          }
          this.validPadding = validPadding;
          this.ignoreCase = ignoreCase;
        }
    
        private static byte[] decodabetFor(char[] chars) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 41.6K bytes
    - Click Count (0)
Back to Top