Lines Matching refs:code
13 the crc code when it is not needed. For shared libraries, gzip decoding
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
43 DIST, /* i: waiting for distance code */
106 /* for table and code decoding */
108 /* fixed and dynamic code tables */
109 code const FAR *lencode; /* starting table for length/literal codes */
110 code const FAR *distcode; /* starting table for distance codes */
114 unsigned ncode; /* number of code length code lengths */
115 unsigned nlen; /* number of length code lengths */
116 unsigned ndist; /* number of distance code lengths */
117 unsigned have; /* number of code lengths in lens[] */
118 code FAR *next; /* next available space in codes[] */
119 unsigned short lens[320]; /* temporary storage for code lengths */
120 unsigned short work[288]; /* work area for code table building */
121 code codes[ENOUGH]; /* space for code tables */