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
356 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
357 uInt level_flags = (s->level-1) >> 1;
369 putShortMSB(s, (uInt)(strm->adler >> 16));
370 putShortMSB(s, (uInt)(strm->adler & 0xffff));
457 putShortMSB(s, (uInt)(strm->adler >> 16));
458 putShortMSB(s, (uInt)(strm->adler & 0xffff));
565 static uInt longest_match(
582 uInt wmask = s->w_mask;
609 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
700 if ((uInt)best_len <= s->lookahead) return best_len;
751 uInt wsize = s->w_size;
901 s->lookahead = (uInt)(s->strstart - max_start);
902 s->strstart = (uInt)max_start;
908 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
1077 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;