Lines Matching refs:uInt
88 local void putShortMSB OF((deflate_state *s, uInt b));
94 uInt longest_match OF((deflate_state *s, IPos cur_match));
96 local uInt longest_match OF((deflate_state *s, IPos cur_match));
99 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
324 uInt dictLength;
327 uInt length = dictLength;
328 uInt n;
526 uInt b;
631 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
632 uInt level_flags;
651 putShortMSB(s, (uInt)(strm->adler >> 16));
652 putShortMSB(s, (uInt)(strm->adler & 0xffff));
660 uInt beg = s->pending; /* start of bytes to update crc */
688 uInt beg = s->pending; /* start of bytes to update crc */
719 uInt beg = s->pending; /* start of bytes to update crc */
853 putShortMSB(s, (uInt)(strm->adler >> 16));
854 putShortMSB(s, (uInt)(strm->adler & 0xffff));
941 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
1033 local uInt longest_match(s, cur_match) in longest_match()
1049 uInt wmask = s->w_mask;
1076 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1172 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1181 local uInt longest_match_fast(s, cur_match) in longest_match_fast()
1231 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1278 uInt wsize = s->w_size;
1432 s->lookahead = (uInt)(s->strstart - max_start);
1433 s->strstart = (uInt)max_start;
1439 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
1624 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
1694 uInt run; /* length of run */
1695 uInt max; /* maximum length of run */
1696 uInt prev; /* byte at distance one to match */