Home | History | Annotate | Download | only in zlib

Lines Matching refs:uInt

121     uInt  w_size;        /* LZ77 window size (32K by default) */
122 uInt w_bits; /* log2(w_size) (8..16) */
123 uInt w_mask; /* w_size - 1 */
148 uInt ins_h; /* hash index of string to be inserted */
149 uInt hash_size; /* number of elements in hash table */
150 uInt hash_bits; /* log2(hash_size) */
151 uInt hash_mask; /* hash_size-1 */
153 uInt hash_shift;
165 uInt match_length; /* length of best match */
168 uInt strstart; /* start of string to insert */
169 uInt match_start; /* start of matching string */
170 uInt lookahead; /* number of valid bytes ahead in window */
172 uInt prev_length;
177 uInt max_chain_length;
183 uInt max_lazy_match;
197 uInt good_match;
235 uInt lit_bufsize;
255 uInt sym_next; /* running index in symbol buffer */
256 uInt sym_end; /* symbol table full when sym_next reaches this */
260 uInt matches; /* number of string matches in current block */
261 uInt insert; /* bytes at end of window left to insert */