Searched refs:HuffmanTreeGroup (Results 1 – 7 of 7) sorted by relevance
/external/brotli/csharp/org/brotli/dec/ |
D | State.cs | 30 internal readonly Org.Brotli.Dec.HuffmanTreeGroup hGroup0 = new Org.Brotli.Dec.HuffmanTreeGroup(); 32 internal readonly Org.Brotli.Dec.HuffmanTreeGroup hGroup1 = new Org.Brotli.Dec.HuffmanTreeGroup(); 34 internal readonly Org.Brotli.Dec.HuffmanTreeGroup hGroup2 = new Org.Brotli.Dec.HuffmanTreeGroup();
|
D | HuffmanTreeGroup.cs | 9 internal sealed class HuffmanTreeGroup class 28 internal static void Init(Org.Brotli.Dec.HuffmanTreeGroup group, int alphabetSize, int n) in Init() 38 internal static void Decode(Org.Brotli.Dec.HuffmanTreeGroup group, Org.Brotli.Dec.BitReader br) in Decode()
|
D | Decode.cs | 592 Org.Brotli.Dec.HuffmanTreeGroup.Init(state.hGroup0, NumLiteralCodes, numLiteralTrees); in ReadMetablockHuffmanCodesAndContextMaps() 593 …Org.Brotli.Dec.HuffmanTreeGroup.Init(state.hGroup1, NumInsertAndCopyCodes, state.numBlockTypes[1]); in ReadMetablockHuffmanCodesAndContextMaps() 594 Org.Brotli.Dec.HuffmanTreeGroup.Init(state.hGroup2, numDistanceCodes, numDistTrees); in ReadMetablockHuffmanCodesAndContextMaps() 595 Org.Brotli.Dec.HuffmanTreeGroup.Decode(state.hGroup0, br); in ReadMetablockHuffmanCodesAndContextMaps() 596 Org.Brotli.Dec.HuffmanTreeGroup.Decode(state.hGroup1, br); in ReadMetablockHuffmanCodesAndContextMaps() 597 Org.Brotli.Dec.HuffmanTreeGroup.Decode(state.hGroup2, br); in ReadMetablockHuffmanCodesAndContextMaps()
|
/external/brotli/c/dec/ |
D | state.h | 138 HuffmanTreeGroup literal_hgroup; 139 HuffmanTreeGroup insert_copy_hgroup; 140 HuffmanTreeGroup distance_hgroup; 244 BrotliDecoderState* s, HuffmanTreeGroup* group, uint32_t alphabet_size,
|
D | huffman.h | 121 } HuffmanTreeGroup; typedef
|
D | state.c | 145 HuffmanTreeGroup* group, uint32_t alphabet_size, uint32_t max_symbol, in BrotliDecoderHuffmanTreeGroupInit()
|
D | decode.c | 954 HuffmanTreeGroup* group, BrotliDecoderState* s) { in HuffmanTreeGroupDecode() 2330 HuffmanTreeGroup* hgroup = NULL; in BrotliDecoderDecompressStream()
|