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));
351 uInt dictLength;
354 uInt length = dictLength;
355 uInt n;
599 uInt b;
704 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
705 uInt level_flags;
724 putShortMSB(s, (uInt)(strm->adler >> 16));
725 putShortMSB(s, (uInt)(strm->adler & 0xffff));
733 uInt beg = s->pending; /* start of bytes to update crc */
761 uInt beg = s->pending; /* start of bytes to update crc */
792 uInt beg = s->pending; /* start of bytes to update crc */
932 putShortMSB(s, (uInt)(strm->adler >> 16));
933 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1018 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
1109 local uInt longest_match(s, cur_match)
1125 uInt wmask = s->w_mask;
1152 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1248 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1258 local uInt longest_match(s, cur_match)
1308 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1357 uInt wsize = s->w_size;
1544 s->lookahead = (uInt)(s->strstart - max_start);
1545 s->strstart = (uInt)max_start;
1551 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
1729 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
1804 uInt prev; /* byte at distance one to match */