uInt               33 other-licenses/zlib/compress.c     stream.avail_in = (uInt)sourceLen;
uInt               39 other-licenses/zlib/compress.c     stream.avail_out = (uInt)*destLen;
uInt               89 other-licenses/zlib/deflate.c       uInt longest_match  OF((deflate_state *s, IPos cur_match));
uInt               91 other-licenses/zlib/deflate.c local uInt longest_match  OF((deflate_state *s, IPos cur_match));
uInt               94 other-licenses/zlib/deflate.c local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
uInt              321 other-licenses/zlib/deflate.c     uInt length = dictLength;
uInt              322 other-licenses/zlib/deflate.c     uInt n;
uInt              625 other-licenses/zlib/deflate.c             uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
uInt              626 other-licenses/zlib/deflate.c             uInt level_flags;
uInt              645 other-licenses/zlib/deflate.c                 putShortMSB(s, (uInt)(strm->adler >> 16));
uInt              646 other-licenses/zlib/deflate.c                 putShortMSB(s, (uInt)(strm->adler & 0xffff));
uInt              654 other-licenses/zlib/deflate.c             uInt beg = s->pending;  /* start of bytes to update crc */
uInt              682 other-licenses/zlib/deflate.c             uInt beg = s->pending;  /* start of bytes to update crc */
uInt              713 other-licenses/zlib/deflate.c             uInt beg = s->pending;  /* start of bytes to update crc */
uInt              847 other-licenses/zlib/deflate.c         putShortMSB(s, (uInt)(strm->adler >> 16));
uInt              848 other-licenses/zlib/deflate.c         putShortMSB(s, (uInt)(strm->adler & 0xffff));
uInt              935 other-licenses/zlib/deflate.c     zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
uInt             1027 other-licenses/zlib/deflate.c local uInt longest_match(s, cur_match)
uInt             1043 other-licenses/zlib/deflate.c     uInt wmask = s->w_mask;
uInt             1070 other-licenses/zlib/deflate.c     if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
uInt             1166 other-licenses/zlib/deflate.c     if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
uInt             1175 other-licenses/zlib/deflate.c local uInt longest_match_fast(s, cur_match)
uInt             1225 other-licenses/zlib/deflate.c     return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
uInt             1272 other-licenses/zlib/deflate.c     uInt wsize = s->w_size;
uInt             1426 other-licenses/zlib/deflate.c             s->lookahead = (uInt)(s->strstart - max_start);
uInt             1427 other-licenses/zlib/deflate.c             s->strstart = (uInt)max_start;
uInt             1433 other-licenses/zlib/deflate.c         if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
uInt             1618 other-licenses/zlib/deflate.c             uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
uInt             1688 other-licenses/zlib/deflate.c     uInt run;           /* length of run */
uInt             1689 other-licenses/zlib/deflate.c     uInt max;           /* maximum length of run */
uInt             1690 other-licenses/zlib/deflate.c     uInt prev;          /* byte at distance one to match */
uInt              100 other-licenses/zlib/deflate.h     uInt   pending;      /* nb of bytes in the pending buffer */
uInt              103 other-licenses/zlib/deflate.h     uInt   gzindex;      /* where in extra, name, or comment */
uInt              109 other-licenses/zlib/deflate.h     uInt  w_size;        /* LZ77 window size (32K by default) */
uInt              110 other-licenses/zlib/deflate.h     uInt  w_bits;        /* log2(w_size)  (8..16) */
uInt              111 other-licenses/zlib/deflate.h     uInt  w_mask;        /* w_size - 1 */
uInt              136 other-licenses/zlib/deflate.h     uInt  ins_h;          /* hash index of string to be inserted */
uInt              137 other-licenses/zlib/deflate.h     uInt  hash_size;      /* number of elements in hash table */
uInt              138 other-licenses/zlib/deflate.h     uInt  hash_bits;      /* log2(hash_size) */
uInt              139 other-licenses/zlib/deflate.h     uInt  hash_mask;      /* hash_size-1 */
uInt              141 other-licenses/zlib/deflate.h     uInt  hash_shift;
uInt              153 other-licenses/zlib/deflate.h     uInt match_length;           /* length of best match */
uInt              156 other-licenses/zlib/deflate.h     uInt strstart;               /* start of string to insert */
uInt              157 other-licenses/zlib/deflate.h     uInt match_start;            /* start of matching string */
uInt              158 other-licenses/zlib/deflate.h     uInt lookahead;              /* number of valid bytes ahead in window */
uInt              160 other-licenses/zlib/deflate.h     uInt prev_length;
uInt              165 other-licenses/zlib/deflate.h     uInt max_chain_length;
uInt              171 other-licenses/zlib/deflate.h     uInt max_lazy_match;
uInt              185 other-licenses/zlib/deflate.h     uInt good_match;
uInt              216 other-licenses/zlib/deflate.h     uInt  lit_bufsize;
uInt              236 other-licenses/zlib/deflate.h     uInt last_lit;      /* running index in l_buf */
uInt              246 other-licenses/zlib/deflate.h     uInt matches;       /* number of string matches in current block */
uInt              267 other-licenses/zlib/gzio.c         s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
uInt              293 other-licenses/zlib/gzio.c     uInt len;
uInt              303 other-licenses/zlib/gzio.c         len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
uInt              334 other-licenses/zlib/gzio.c         len  =  (uInt)get_byte(s);
uInt              335 other-licenses/zlib/gzio.c         len += ((uInt)get_byte(s))<<8;
uInt              429 other-licenses/zlib/gzio.c             uInt n = s->stream.avail_in;
uInt              441 other-licenses/zlib/gzio.c                     (uInt)fread(next_out, 1, s->stream.avail_out, s->file);
uInt              452 other-licenses/zlib/gzio.c             s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
uInt              470 other-licenses/zlib/gzio.c             s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
uInt              490 other-licenses/zlib/gzio.c     s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
uInt              709 other-licenses/zlib/gzio.c     uInt len;
uInt              721 other-licenses/zlib/gzio.c             if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len) {
uInt              795 other-licenses/zlib/gzio.c             uInt size = Z_BUFSIZE;
uInt              796 other-licenses/zlib/gzio.c             if (offset < Z_BUFSIZE) size = (uInt)offset;
uInt              847 other-licenses/zlib/gzio.c         size = gzread(file, s->outbuf, (uInt)size);
uInt             1111 other-licenses/zlib/trees.c         Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
uInt               36 other-licenses/zlib/uncompr.c     stream.avail_in = (uInt)sourceLen;
uInt               41 other-licenses/zlib/uncompr.c     stream.avail_out = (uInt)*destLen;
uInt              289 other-licenses/zlib/zconf.h typedef uInt  FAR uIntf;
uInt               84 other-licenses/zlib/zlib.h     uInt     avail_in;  /* number of bytes available at next_in */
uInt               88 other-licenses/zlib/zlib.h     uInt     avail_out; /* remaining free space at next_out */
uInt              115 other-licenses/zlib/zlib.h     uInt    extra_len;  /* extra field length (valid if extra != Z_NULL) */
uInt              116 other-licenses/zlib/zlib.h     uInt    extra_max;  /* space at extra (only when reading header) */
uInt              118 other-licenses/zlib/zlib.h     uInt    name_max;   /* space at name (only when reading header) */
uInt              120 other-licenses/zlib/zlib.h     uInt    comm_max;   /* space at comment (only when reading header) */
uInt              540 other-licenses/zlib/zlib.h                                              uInt  dictLength));
uInt              738 other-licenses/zlib/zlib.h                                              uInt  dictLength));
uInt             1260 other-licenses/zlib/zlib.h ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
uInt             1285 other-licenses/zlib/zlib.h ZEXTERN uLong ZEXPORT crc32   OF((uLong crc, const Bytef *buf, uInt len));
uInt               37 other-licenses/zlib/zutil.c     switch (sizeof(uInt)) {
uInt              165 other-licenses/zlib/zutil.c     uInt j;
uInt              306 other-licenses/zlib/zutil.c     return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :