Lines Matching refs:uInt

184     uInt wsize = s->w_size;
252 uInt wsize = s->w_size;
308 uInt str = s->strstart - s->insert;
320 uInt str = s->strstart - s->insert;
461 s->w_bits = (uInt)windowBits;
593 uInt dictLength) {
595 uInt str, n;
655 uInt *dictLength) {
657 uInt len;
841 s->good_match = (uInt)good_length;
842 s->max_lazy_match = (uInt)max_lazy;
844 s->max_chain_length = (uInt)max_chain;
942 local void putShortMSB(deflate_state *s, uInt b) {
1036 uInt header = (Z_DEFLATED + ((s->w_bits - 8) << 4)) << 8;
1037 uInt level_flags;
1055 putShortMSB(s, (uInt)(strm->adler >> 16));
1056 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1123 uInt left = (s->gzhead->extra_len & 0xffff) - s->gzindex;
1125 uInt copy = s->pending_buf_size - s->pending;
1285 putShortMSB(s, (uInt)(strm->adler >> 16));
1286 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1364 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->lit_bufsize * 5);
1366 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
1395 local uInt longest_match(deflate_state *s, IPos cur_match) {
1408 uInt wmask = s->w_mask;
1435 if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
1552 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1561 local uInt longest_match(deflate_state *s, IPos cur_match) {
1609 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
2028 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
2106 uInt prev; /* byte at distance one to match */
2135 s->match_length = MAX_MATCH - (uInt)(strend - scan);
2139 Assert(scan <= s->window + (uInt)(s->window_size - 1),