Lines Matching refs:uInt

110 local void putShortMSB    OF((deflate_state *s, uInt b));
116 uInt longest_match OF((deflate_state *s, IPos cur_match));
118 local uInt longest_match OF((deflate_state *s, IPos cur_match));
121 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
336 deflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in deflateSetDictionary()
339 uInt length = dictLength; in deflateSetDictionary()
340 uInt n; in deflateSetDictionary()
545 putShortMSB(deflate_state *s, uInt b) in putShortMSB()
653 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; in deflate()
654 uInt level_flags; in deflate()
673 putShortMSB(s, (uInt)(strm->adler >> 16)); in deflate()
674 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in deflate()
682 uInt beg = s->pending; /* start of bytes to update crc */ in deflate()
710 uInt beg = s->pending; /* start of bytes to update crc */ in deflate()
741 uInt beg = s->pending; /* start of bytes to update crc */ in deflate()
875 putShortMSB(s, (uInt)(strm->adler >> 16)); in deflate()
876 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in deflate()
962 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size); in deflateCopy()
1053 local uInt
1068 uInt wmask = s->w_mask; in longest_match()
1095 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; in longest_match()
1192 if ((uInt)best_len <= s->lookahead) return (uInt)best_len; in longest_match()
1202 local uInt
1252 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead; in longest_match_fast()
1297 uInt wsize = s->w_size; in fill_window()
1450 s->lookahead = (uInt)(s->strstart - max_start); in deflate_stored()
1451 s->strstart = (uInt)max_start; in deflate_stored()
1457 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) { in deflate_stored()
1641 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH; in deflate_slow()
1710 uInt run; /* length of run */
1711 uInt max; /* maximum length of run */
1712 uInt prev; /* byte at distance one to match */