Home
last modified time | relevance | path

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

/external/brotli/java/org/brotli/dec/
DDecode.java49 static final int HUFFMAN_TABLE_SIZE = 1080; field in Decode
152 s.blockTrees = new int[6 * HUFFMAN_TABLE_SIZE]; in initState()
451 int[] table = new int[HUFFMAN_TABLE_SIZE]; in decodeContextMap()
487 int blockType = readSymbol(s.blockTrees, treeType * HUFFMAN_TABLE_SIZE, s); in decodeBlockTypeAndLength()
488 int result = readBlockLength(s.blockTrees, (treeType + 3) * HUFFMAN_TABLE_SIZE, s); in decodeBlockTypeAndLength()
589 readHuffmanCode(numBlockTypes + 2, s.blockTrees, treeType * HUFFMAN_TABLE_SIZE, s); in readMetablockPartition()
590 readHuffmanCode(NUM_BLOCK_LENGTH_CODES, s.blockTrees, (treeType + 3) * HUFFMAN_TABLE_SIZE, s); in readMetablockPartition()
591 return readBlockLength(s.blockTrees, (treeType + 3) * HUFFMAN_TABLE_SIZE, s); in readMetablockPartition()
701 int[] group = new int[n + (n * HUFFMAN_TABLE_SIZE)]; in decodeHuffmanTreeGroup()
706 next += HUFFMAN_TABLE_SIZE; in decodeHuffmanTreeGroup()