Home | History | Annotate | Download | only in m_initimg

Lines Matching defs:Code

14 *  - Maximum tree depth of 32 (the coder aborts if any code exceeds a
73 UInt Code;
191 sym[k].Code = 0;
225 UInt code, UInt bits, UInt first,
237 /* Store code info in symbol array */
238 sym[first].Code = code;
272 _Huffman_MakeTree( sym, stream, (code<<1)+0, bits+1,
294 _Huffman_MakeTree( sym, stream, (code<<1)+1, bits+1,
310 huff_bitstream_t *stream, UInt code, UInt bits,
321 /* Store code info in symbol array */
323 sym[*symnum].Code = code;
336 _Huffman_RecoverTree( sym, stream, (code<<1)+0, bits+1,
344 _Huffman_RecoverTree( sym, stream, (code<<1)+1, bits+1,
392 /* Was any code > 32 bits? (we do not handle that at present) */
422 _Huffman_WriteBits( &stream, sym[symbol].Code,
455 UInt bits, delta_bits, new_bits, code;
473 /* Sort histogram - shortest code first (bubble sort) */
494 /* Search tree for matching code */
496 code = 0;
503 code = code | (new_bits << (32-bits-delta_bits));
506 if( code == (sym[m].Code << (32-sym[m].Bits)) )