Lines Matching refs:uInt
85 local void putShortMSB OF((deflate_state *s, uInt b));
90 uInt longest_match OF((deflate_state *s, IPos cur_match));
92 local uInt longest_match OF((deflate_state *s, IPos cur_match));
326 uInt dictLength;
329 uInt str, n;
628 uInt b;
736 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
737 uInt level_flags;
756 putShortMSB(s, (uInt)(strm->adler >> 16));
757 putShortMSB(s, (uInt)(strm->adler & 0xffff));
765 uInt beg = s->pending; /* start of bytes to update crc */
793 uInt beg = s->pending; /* start of bytes to update crc */
824 uInt beg = s->pending; /* start of bytes to update crc */
965 putShortMSB(s, (uInt)(strm->adler >> 16));
966 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1053 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
1146 local uInt longest_match(s, cur_match)
1162 uInt wmask = s->w_mask;
1189 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1285 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1295 local uInt longest_match(s, cur_match)
1345 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1394 uInt wsize = s->w_size;
1470 uInt str = s->strstart - s->insert;
1598 s->lookahead = (uInt)(s->strstart - max_start);
1599 s->strstart = (uInt)max_start;
1605 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
1789 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
1864 uInt prev; /* byte at distance one to match */
1897 Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan");