Searched refs:ConstructHuffmanCode (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/brotli/dist/c/dec/
H A Dhuffman.c145 code = ConstructHuffmanCode(0, (uint16_t)sorted[0]);
160 code = ConstructHuffmanCode((uint8_t)bits, (uint16_t)sorted[symbol++]);
215 code = ConstructHuffmanCode((uint8_t)bits, (uint16_t)symbol);
244 root_table[sub_key] = ConstructHuffmanCode(
250 code = ConstructHuffmanCode((uint8_t)(len - root_bits), (uint16_t)symbol);
269 table[0] = ConstructHuffmanCode(0, val[0]);
273 table[0] = ConstructHuffmanCode(1, val[0]);
274 table[1] = ConstructHuffmanCode(1, val[1]);
276 table[0] = ConstructHuffmanCode(1, val[1]);
277 table[1] = ConstructHuffmanCode(
[all...]
H A Dhuffman.h36 /* Do not create this struct directly - use the ConstructHuffmanCode
43 static BROTLI_INLINE HuffmanCode ConstructHuffmanCode(const uint8_t bits, function in typeref:typename:BROTLI_INLINE HuffmanCode
77 static BROTLI_INLINE HuffmanCode ConstructHuffmanCode(const uint8_t bits,

Completed in 4 milliseconds