Home | History | Annotate | Download | only in puff

Lines Matching full:construct

39  *                      - Simplify offs[] index in construct()
56 * 1.4 31 Mar 2002 - Simplify construct() code set check
310 * Huffman code for n symbols, construct the tables required to decode those
329 * fixed() and is not verified by construct().
340 local int construct(struct huffman *h, const short *length, int n)
548 /* construct lencode and distcode */
563 construct(&lencode, lengths, FIXLCODES);
568 construct(&distcode, lengths, MAXDCODES);
655 * code length code lengths, three bits each. This is used to construct the
669 int err; /* construct() return value */
677 /* construct lencode and distcode */
697 err = construct(&lencode, lengths, 19);
736 err = construct(&lencode, lengths, nlen);
741 err = construct(&distcode, lengths + nlen, ndist);