Lines Matching refs:uInt
77 static void putShortMSB (deflate_state *s, uInt b);
79 static uInt longest_match (deflate_state *s, IPos cur_match);
321 uInt b in putShortMSB()
356 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; in zlib_deflate()
357 uInt level_flags = (s->level-1) >> 1; in zlib_deflate()
369 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate()
370 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate()
457 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate()
458 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate()
558 static uInt longest_match( in longest_match()
575 uInt wmask = s->w_mask; in longest_match()
602 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; in longest_match()
693 if ((uInt)best_len <= s->lookahead) return best_len; in longest_match()
744 uInt wsize = s->w_size; in fill_window()
894 s->lookahead = (uInt)(s->strstart - max_start); in deflate_stored()
895 s->strstart = (uInt)max_start; in deflate_stored()
901 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) { in deflate_stored()
1070 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH; in deflate_slow()