Lines Matching full:construct
39 * - Simplify offs[] index in construct()
56 * 1.4 31 Mar 2002 - Simplify construct() code set check
309 * Huffman code for n symbols, construct the tables required to decode those
328 * fixed() and is not verified by construct().
339 local int construct(struct huffman *h, const short *length, int n)
547 /* construct lencode and distcode */
562 construct(&lencode, lengths, FIXLCODES);
567 construct(&distcode, lengths, MAXDCODES);
654 * code length code lengths, three bits each. This is used to construct the
668 int err; /* construct() return value */
676 /* construct lencode and distcode */
696 err = construct(&lencode, lengths, 19);
733 err = construct(&lencode, lengths, nlen);
738 err = construct(&distcode, lengths + nlen, ndist);