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()
565 static uInt longest_match( in longest_match()
582 uInt wmask = s->w_mask; in longest_match()
609 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; in longest_match()
700 if ((uInt)best_len <= s->lookahead) return best_len; in longest_match()
751 uInt wsize = s->w_size; in fill_window()
901 s->lookahead = (uInt)(s->strstart - max_start); in deflate_stored()
902 s->strstart = (uInt)max_start; in deflate_stored()
908 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) { in deflate_stored()
1077 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH; in deflate_slow()