Lines Matching refs:huffman
13 maxCodeLen = 16 // max length of Huffman code
17 numCodes = 19 // number of codes in Huffman meta-code
29 bits [maxLit + maxDist]int // lengths defining Huffman codes
48 // compressed, fixed Huffman tables
51 // compressed, dynamic Huffman tables
63 // Compression with dynamic Huffman codes
102 // using the code length Huffman code.
163 // Decode a single Huffman block from f.
164 // hl and hd are the Huffman states for the lit/length values
166 // fixed distance encoding associated with fixed Huffman blocks.
180 // Done with huffman block; read next block.
308 // Read the next Huffman-encoded symbol from f according to h.
368 // Hard-coded Huffman tables for DEFLATE algorithm.
420 // Huffman decoder is based on
421 // J. Brian Connell, ``A Huffman-Shannon-Fano Code,''
441 // Initialize Huffman decoding tables from array of code lengths.