Home | History | Annotate | Download | only in zlib

Lines Matching refs:uInt

192     uInt wsize = s->w_size;
256 uInt wsize = s->w_size;
310 uInt str = s->strstart - s->insert;
442 s->w_bits = (uInt)windowBits;
446 s->hash_bits = (uInt)memLevel + 7;
553 uInt dictLength) {
555 uInt str, n;
619 uInt *dictLength) {
621 uInt len;
805 s->good_match = (uInt)good_length;
806 s->max_lazy_match = (uInt)max_lazy;
808 s->max_chain_length = (uInt)max_chain;
906 local void putShortMSB(deflate_state *s, uInt b) {
1000 uInt header = (Z_DEFLATED + ((s->w_bits - 8) << 4)) << 8;
1001 uInt level_flags;
1019 putShortMSB(s, (uInt)(strm->adler >> 16));
1020 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1087 uInt left = (s->gzhead->extra_len & 0xffff) - s->gzindex;
1089 uInt copy = s->pending_buf_size - s->pending;
1248 putShortMSB(s, (uInt)(strm->adler >> 16));
1249 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1350 local uInt longest_match(deflate_state *s, IPos cur_match) {
1363 uInt wmask = s->w_mask;
1390 if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
1489 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1498 local uInt longest_match(deflate_state *s, IPos cur_match) {
1546 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1970 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
2042 uInt prev; /* byte at distance one to match */
2071 s->match_length = MAX_MATCH - (uInt)(strend - scan);
2075 Assert(scan <= s->window + (uInt)(s->window_size - 1),