Lines Matching refs:uInt
74 static void putShortMSB (deflate_state *s, uInt b);
77 static uInt longest_match (deflate_state *s, IPos cur_match);
290 uInt b in putShortMSB()
354 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; in zlib_deflate()
355 uInt level_flags = (s->level-1) >> 1; in zlib_deflate()
367 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate()
368 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate()
454 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate()
455 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate()
554 static uInt longest_match( in longest_match()
571 uInt wmask = s->w_mask; in longest_match()
598 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; in longest_match()
689 if ((uInt)best_len <= s->lookahead) return best_len; in longest_match()
740 uInt wsize = s->w_size; in fill_window()
890 s->lookahead = (uInt)(s->strstart - max_start); in deflate_stored()
891 s->strstart = (uInt)max_start; in deflate_stored()
897 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) { in deflate_stored()
1066 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH; in deflate_slow()