Searched refs:ReplicateValue (Results 1 – 3 of 3) sorted by relevance
/external/brotli/csharp/org/brotli/dec/ |
D | Huffman.cs | 42 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() 143 …ReplicateValue(rootTable, currentOffset + (key >> rootBits), step, tableSize, (len - rootBits) << … in BuildHuffmanTable()
|
/external/webp/src/utils/ |
D | huffman_utils.c | 53 static WEBP_INLINE void ReplicateValue(HuffmanCode* table, in ReplicateValue() function 138 ReplicateValue(table, 1, total_size, code); in BuildHuffmanTable() 166 ReplicateValue(&table[key], step, table_size, code); in BuildHuffmanTable() 194 ReplicateValue(&table[key >> root_bits], step, table_size, code); in BuildHuffmanTable()
|
/external/brotli/c/dec/ |
D | huffman.c | 80 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()
|