Lines Matching full:code
34 LENLENS, /* i: waiting for code length code lengths */
35 CODELENS, /* i: waiting for length/lit and distance code lengths */
36 LEN, /* i: waiting for length/lit code */
38 DIST, /* i: waiting for distance code */
96 /* for table and code decoding */
98 /* fixed and dynamic code tables */
99 code const *lencode; /* starting table for length/literal codes */
100 code const *distcode; /* starting table for distance codes */
104 unsigned ncode; /* number of code length code lengths */
105 unsigned nlen; /* number of length code lengths */
106 unsigned ndist; /* number of distance code lengths */
107 unsigned have; /* number of code lengths in lens[] */
108 code *next; /* next available space in codes[] */
109 unsigned short lens[320]; /* temporary storage for code lengths */
110 unsigned short work[288]; /* work area for code table building */
111 code codes[ENOUGH]; /* space for code tables */