Home | History | Annotate | Download | only in dec

Lines Matching defs:HuffmanCode

47 } HuffmanCode;
49 static BROTLI_INLINE HuffmanCode ConstructHuffmanCode(const uint8_t bits,
51 HuffmanCode h;
57 /* Please use the following macros to optimize HuffmanCode accesses in hot
60 * For example, assuming |table| contains a HuffmanCode pointer:
75 /* These must be given a HuffmanCode pointer! */
81 typedef BROTLI_ALIGNED(4) uint32_t HuffmanCode;
83 static BROTLI_INLINE HuffmanCode ConstructHuffmanCode(const uint8_t bits,
91 /* These must be given a HuffmanCode pointer! */
97 BROTLI_INTERNAL void BrotliBuildCodeLengthsHuffmanTable(HuffmanCode* root_table,
102 BROTLI_INTERNAL uint32_t BrotliBuildHuffmanTable(HuffmanCode* root_table,
109 BROTLI_INTERNAL uint32_t BrotliBuildSimpleHuffmanTable(HuffmanCode* table,
116 HuffmanCode** htrees;
117 HuffmanCode* codes;