HomeSort by relevance Sort by last modified time
    Searched refs:ConstructHuffmanCode (Results 1 - 2 of 2) sorted by null

  /external/brotli/c/dec/
huffman.c 145 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(1, val[0])
    [all...]
huffman.h 42 /* Do not create this struct directly - use the ConstructHuffmanCode
49 static BROTLI_INLINE HuffmanCode ConstructHuffmanCode(const uint8_t bits,
83 static BROTLI_INLINE HuffmanCode ConstructHuffmanCode(const uint8_t bits,

Completed in 998 milliseconds