Home | History | Annotate | Download | only in infback9

Lines Matching refs:LENS

22    The code lengths are lens[0..codes-1].  The result starts at *table,
24 lens shorts, which is used as a work area. type is the type of code
25 to be generated, CODES, LENS, or DISTS. On return, zero is success,
32 int inflate_table9(type, lens, codes, table, bits, work)
34 unsigned short FAR *lens;
79 code lengths are lens[0..codes-1]. Each length corresponds to the
91 lens[] are in the range 0..MAXBITS. The caller must assure this.
108 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
112 count[lens[sym]]++;
141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
163 provided *table space. It is checked for LENS and DIST tables against
180 case LENS:
205 if ((type == LENS && used >= ENOUGH_LENS) ||
249 len = lens[work[sym]];
273 if ((type == LENS && used >= ENOUGH_LENS) ||