Home
last modified time | relevance | path

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

/external/brotli/java/org/brotli/dec/
DHuffman.java34 private static void replicateValue(int[] table, int offset, int step, int end, int item) { in replicateValue() method in Huffman
106 replicateValue(rootTable, tableOffset + key, step, tableSize, len << 16 | sorted[symbol++]); in buildHuffmanTable()
126 replicateValue(rootTable, currentOffset + (key >> rootBits), step, tableSize, in buildHuffmanTable()
/external/brotli/js/
Ddecode.js1154 function replicateValue(table, offset, step, end, item) { function in BrotliDecodeClosure
1217 replicateValue(rootTable, tableOffset + key, step, tableSize, len << 16 | sorted[symbol++]);
1234replicateValue(rootTable, currentOffset + (key >> rootBits), step, tableSize, (len - rootBits) << …