Home
last modified time | relevance | path

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

/external/webp/src/utils/
Dhuffman_utils.c53 static WEBP_INLINE void ReplicateValue(HuffmanCode* table, in ReplicateValue() function
132 ReplicateValue(table, 1, total_size, code); in BuildHuffmanTable()
158 ReplicateValue(&table[key], step, table_size, code); in BuildHuffmanTable()
185 ReplicateValue(&table[key >> root_bits], step, table_size, code); in BuildHuffmanTable()
/external/brotli/csharp/org/brotli/dec/
DHuffman.cs42 private static void ReplicateValue(int[] table, int offset, int step, int end, int item) in ReplicateValue() method in Org.Brotli.Dec.Huffman
122 ReplicateValue(rootTable, tableOffset + key, step, tableSize, len << 16 | sorted[symbol++]); in BuildHuffmanTable()
143ReplicateValue(rootTable, currentOffset + (key >> rootBits), step, tableSize, (len - rootBits) << … in BuildHuffmanTable()
/external/brotli/c/dec/
Dhuffman.c80 static BROTLI_INLINE void ReplicateValue(HuffmanCode* table, in ReplicateValue() function
161 ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code); in BrotliBuildCodeLengthsHuffmanTable()
216 ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code); in BrotliBuildHuffmanTable()
251 ReplicateValue( in BrotliBuildHuffmanTable()