• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/

Lines Matching refs:uInt

83 local void putShortMSB    OF((deflate_state *s, uInt b));
89 uInt longest_match OF((deflate_state *s, IPos cur_match));
91 local uInt longest_match OF((deflate_state *s, IPos cur_match));
94 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
318 uInt dictLength;
321 uInt length = dictLength;
322 uInt n;
520 uInt b;
625 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
626 uInt level_flags;
645 putShortMSB(s, (uInt)(strm->adler >> 16));
646 putShortMSB(s, (uInt)(strm->adler & 0xffff));
654 uInt beg = s->pending; /* start of bytes to update crc */
682 uInt beg = s->pending; /* start of bytes to update crc */
713 uInt beg = s->pending; /* start of bytes to update crc */
847 putShortMSB(s, (uInt)(strm->adler >> 16));
848 putShortMSB(s, (uInt)(strm->adler & 0xffff));
935 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
1027 local uInt longest_match(s, cur_match)
1043 uInt wmask = s->w_mask;
1070 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1166 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1175 local uInt longest_match_fast(s, cur_match)
1225 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1272 uInt wsize = s->w_size;
1426 s->lookahead = (uInt)(s->strstart - max_start);
1427 s->strstart = (uInt)max_start;
1433 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
1618 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
1688 uInt run; /* length of run */
1689 uInt max; /* maximum length of run */
1690 uInt prev; /* byte at distance one to match */