Lines Matching defs:code
15 /* number of length codes, not counting the special END_BLOCK code */
21 /* number of Literal or Length codes, including the END_BLOCK code */
41 /* Data structure describing a single value and its code string. */
45 ush code; /* bit string */
54 #define Code fc.code
62 int max_code; /* largest code with non zero frequency */
207 * example a binary file with poorly compressible code followed by
217 /* Buffer for distances. To simplify the code, d_buf and l_buf have
226 int last_eob_len; /* bit length of EOB code for last block */
269 /* In order to simplify the code, particularly on 16 bit machines, match
294 * Reverse the first len bits of a code, using straightforward code (a faster
299 unsigned code, /* the value to invert */
305 res |= code & 1;
306 code >>= 1, res <<= 1;