Lines Matching refs:uInt
191 uInt wsize = s->w_size;
257 uInt wsize = s->w_size;
311 uInt str = s->strstart - s->insert;
443 s->w_bits = (uInt)windowBits;
447 s->hash_bits = (uInt)memLevel + 7;
555 uInt dictLength) {
557 uInt str, n;
621 uInt *dictLength) {
623 uInt len;
808 s->good_match = (uInt)good_length;
809 s->max_lazy_match = (uInt)max_lazy;
811 s->max_chain_length = (uInt)max_chain;
910 local void putShortMSB(deflate_state *s, uInt b)
1006 uInt header = (Z_DEFLATED + ((s->w_bits - 8) << 4)) << 8;
1007 uInt level_flags;
1025 putShortMSB(s, (uInt)(strm->adler >> 16));
1026 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1093 uInt left = (s->gzhead->extra_len & 0xffff) - s->gzindex;
1095 uInt copy = s->pending_buf_size - s->pending;
1254 putShortMSB(s, (uInt)(strm->adler >> 16));
1255 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1356 local uInt longest_match(deflate_state *s, IPos cur_match)
1370 uInt wmask = s->w_mask;
1397 if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
1496 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1505 local uInt longest_match(deflate_state *s, IPos cur_match)
1554 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1982 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
2055 uInt prev; /* byte at distance one to match */
2084 s->match_length = MAX_MATCH - (uInt)(strend - scan);
2088 Assert(scan <= s->window + (uInt)(s->window_size - 1),