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));
314 uInt dictLength;
317 uInt length = dictLength;
318 uInt n;
550 uInt b;
653 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
654 uInt level_flags;
673 putShortMSB(s, (uInt)(strm->adler >> 16));
674 putShortMSB(s, (uInt)(strm->adler & 0xffff));
682 uInt beg = s->pending; /* start of bytes to update crc */
710 uInt beg = s->pending; /* start of bytes to update crc */
741 uInt beg = s->pending; /* start of bytes to update crc */
881 putShortMSB(s, (uInt)(strm->adler >> 16));
882 putShortMSB(s, (uInt)(strm->adler & 0xffff));
969 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
1061 local uInt longest_match(s, cur_match) in longest_match()
1077 uInt wmask = s->w_mask;
1104 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1200 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1210 local uInt longest_match(s, cur_match) in longest_match()
1260 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1309 uInt wsize = s->w_size;
1496 s->lookahead = (uInt)(s->strstart - max_start);
1497 s->strstart = (uInt)max_start;
1503 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
1675 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
1744 uInt prev; /* byte at distance one to match */