Symbol: uInt
lib/libz/adler32.c
126
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
lib/libz/compress.c
26
const uInt max = (uInt)-1;
lib/libz/compress.c
50
stream.avail_out = left > (z_size_t)max ? max : (uInt)left;
lib/libz/compress.c
55
(uInt)sourceLen;
lib/libz/crc32.c
944
uLong ZEXPORT crc32(uLong crc, const unsigned char FAR *buf, uInt len) {
lib/libz/deflate.c
1029
uInt header = (Z_DEFLATED + ((s->w_bits - 8) << 4)) << 8;
lib/libz/deflate.c
1030
uInt level_flags;
lib/libz/deflate.c
1048
putShortMSB(s, (uInt)(strm->adler >> 16));
lib/libz/deflate.c
1049
putShortMSB(s, (uInt)(strm->adler & 0xffff));
lib/libz/deflate.c
1277
putShortMSB(s, (uInt)(strm->adler >> 16));
lib/libz/deflate.c
1278
putShortMSB(s, (uInt)(strm->adler & 0xffff));
lib/libz/deflate.c
1385
local uInt longest_match(deflate_state *s, IPos cur_match) {
lib/libz/deflate.c
1398
uInt wmask = s->w_mask;
lib/libz/deflate.c
1425
if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
lib/libz/deflate.c
1524
if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
lib/libz/deflate.c
1533
local uInt longest_match(deflate_state *s, IPos cur_match) {
lib/libz/deflate.c
1581
return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
lib/libz/deflate.c
186
uInt wsize = s->w_size;
lib/libz/deflate.c
2010
uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
lib/libz/deflate.c
2082
uInt prev; /* byte at distance one to match */
lib/libz/deflate.c
2111
s->match_length = MAX_MATCH - (uInt)(strend - scan);
lib/libz/deflate.c
2115
Assert(scan <= s->window + (uInt)(s->window_size - 1),
lib/libz/deflate.c
251
uInt wsize = s->w_size;
lib/libz/deflate.c
312
uInt str = s->strstart - s->insert;
lib/libz/deflate.c
445
s->w_bits = (uInt)windowBits;
lib/libz/deflate.c
449
s->hash_bits = (uInt)memLevel + 7;
lib/libz/deflate.c
556
uInt dictLength) {
lib/libz/deflate.c
558
uInt str, n;
lib/libz/deflate.c
622
uInt *dictLength) {
lib/libz/deflate.c
624
uInt len;
lib/libz/deflate.c
821
s->good_match = (uInt)good_length;
lib/libz/deflate.c
822
s->max_lazy_match = (uInt)max_lazy;
lib/libz/deflate.c
824
s->max_chain_length = (uInt)max_chain;
lib/libz/deflate.c
935
local void putShortMSB(deflate_state *s, uInt b) {
lib/libz/deflate.h
117
uInt w_size; /* LZ77 window size (32K by default) */
lib/libz/deflate.h
118
uInt w_bits; /* log2(w_size) (8..16) */
lib/libz/deflate.h
119
uInt w_mask; /* w_size - 1 */
lib/libz/deflate.h
144
uInt ins_h; /* hash index of string to be inserted */
lib/libz/deflate.h
145
uInt hash_size; /* number of elements in hash table */
lib/libz/deflate.h
146
uInt hash_bits; /* log2(hash_size) */
lib/libz/deflate.h
147
uInt hash_mask; /* hash_size-1 */
lib/libz/deflate.h
149
uInt hash_shift;
lib/libz/deflate.h
161
uInt match_length; /* length of best match */
lib/libz/deflate.h
164
uInt strstart; /* start of string to insert */
lib/libz/deflate.h
165
uInt match_start; /* start of matching string */
lib/libz/deflate.h
166
uInt lookahead; /* number of valid bytes ahead in window */
lib/libz/deflate.h
168
uInt prev_length;
lib/libz/deflate.h
173
uInt max_chain_length;
lib/libz/deflate.h
179
uInt max_lazy_match;
lib/libz/deflate.h
193
uInt good_match;
lib/libz/deflate.h
231
uInt lit_bufsize;
lib/libz/deflate.h
251
uInt sym_next; /* running index in symbol buffer */
lib/libz/deflate.h
252
uInt sym_end; /* symbol table full when sym_next reaches this */
lib/libz/deflate.h
256
uInt matches; /* number of string matches in current block */
lib/libz/deflate.h
257
uInt insert; /* bytes at end of window left to insert */
lib/libz/gzguts.h
122
extern voidp malloc(uInt size);
lib/libz/infback.c
57
state->wbits = (uInt)windowBits;
lib/libz/inflate.c
1254
uInt *dictLength) {
lib/libz/inflate.c
1274
uInt dictLength) {
lib/libz/inflate.c
231
if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR;
lib/libz/inflate.c
234
state->bits += (uInt)bits;
lib/libz/uncompr.c
31
const uInt max = (uInt)-1;
lib/libz/uncompr.c
57
stream.avail_out = left > (z_size_t)max ? max : (uInt)left;
lib/libz/uncompr.c
61
stream.avail_in = len > (z_size_t)max ? max : (uInt)len;
lib/libz/zconf.h
414
typedef uInt FAR uIntf;
lib/libz/zlib.h
124
uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
lib/libz/zlib.h
125
uInt extra_max; /* space at extra (only when reading header) */
lib/libz/zlib.h
127
uInt name_max; /* space at name (only when reading header) */
lib/libz/zlib.h
129
uInt comm_max; /* space at comment (only when reading header) */
lib/libz/zlib.h
1809
ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
lib/libz/zlib.h
1848
ZEXTERN uLong ZEXPORT crc32(uLong crc, const Bytef *buf, uInt len);
lib/libz/zlib.h
620
uInt dictLength);
lib/libz/zlib.h
664
uInt *dictLength);
lib/libz/zlib.h
85
typedef voidpf (*alloc_func)(voidpf opaque, uInt items, uInt size);
lib/libz/zlib.h
915
uInt dictLength);
lib/libz/zlib.h
92
uInt avail_in; /* number of bytes available at next_in */
lib/libz/zlib.h
938
uInt *dictLength);
lib/libz/zlib.h
96
uInt avail_out; /* remaining free space at next_out */
lib/libz/zutil.c
275
voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) {
lib/libz/zutil.c
293
extern voidp malloc(uInt size);
lib/libz/zutil.c
294
extern voidp calloc(uInt items, uInt size);
lib/libz/zutil.c
33
switch ((int)(sizeof(uInt))) {
regress/lib/libz/example.c
253
c_stream.avail_out = (uInt)comprLen;
regress/lib/libz/example.c
259
c_stream.avail_in = (uInt)uncomprLen;
regress/lib/libz/example.c
270
c_stream.avail_in = (uInt)uncomprLen/2;
regress/lib/libz/example.c
277
c_stream.avail_in = (uInt)uncomprLen;
regress/lib/libz/example.c
305
d_stream.avail_in = (uInt)comprLen;
regress/lib/libz/example.c
312
d_stream.avail_out = (uInt)uncomprLen;
regress/lib/libz/example.c
335
uInt len = (uInt)strlen(hello)+1;
regress/lib/libz/example.c
347
c_stream.avail_out = (uInt)*comprLen;
regress/lib/libz/example.c
385
d_stream.avail_out = (uInt)uncomprLen;
regress/lib/libz/example.c
390
d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */
regress/lib/libz/example.c
425
c_stream.avail_out = (uInt)comprLen;
regress/lib/libz/example.c
428
c_stream.avail_in = (uInt)strlen(hello)+1;
regress/lib/libz/example.c
454
d_stream.avail_in = (uInt)comprLen;
regress/lib/libz/example.c
460
d_stream.avail_out = (uInt)uncomprLen;
regress/lib/libz/example.c
509
compr = (Byte*)calloc((uInt)comprLen, 1);
regress/lib/libz/example.c
510
uncompr = (Byte*)calloc((uInt)uncomprLen, 1);
sys/lib/libz/adler32.c
126
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
sys/lib/libz/compress.c
26
const uInt max = (uInt)-1;
sys/lib/libz/compress.c
50
stream.avail_out = left > (z_size_t)max ? max : (uInt)left;
sys/lib/libz/compress.c
55
(uInt)sourceLen;
sys/lib/libz/crc32.c
944
uLong ZEXPORT crc32(uLong crc, const unsigned char FAR *buf, uInt len) {
sys/lib/libz/deflate.c
1029
uInt header = (Z_DEFLATED + ((s->w_bits - 8) << 4)) << 8;
sys/lib/libz/deflate.c
1030
uInt level_flags;
sys/lib/libz/deflate.c
1048
putShortMSB(s, (uInt)(strm->adler >> 16));
sys/lib/libz/deflate.c
1049
putShortMSB(s, (uInt)(strm->adler & 0xffff));
sys/lib/libz/deflate.c
1277
putShortMSB(s, (uInt)(strm->adler >> 16));
sys/lib/libz/deflate.c
1278
putShortMSB(s, (uInt)(strm->adler & 0xffff));
sys/lib/libz/deflate.c
1385
local uInt longest_match(deflate_state *s, IPos cur_match) {
sys/lib/libz/deflate.c
1398
uInt wmask = s->w_mask;
sys/lib/libz/deflate.c
1425
if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
sys/lib/libz/deflate.c
1524
if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
sys/lib/libz/deflate.c
1533
local uInt longest_match(deflate_state *s, IPos cur_match) {
sys/lib/libz/deflate.c
1581
return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
sys/lib/libz/deflate.c
186
uInt wsize = s->w_size;
sys/lib/libz/deflate.c
2012
uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
sys/lib/libz/deflate.c
2084
uInt prev; /* byte at distance one to match */
sys/lib/libz/deflate.c
2113
s->match_length = MAX_MATCH - (uInt)(strend - scan);
sys/lib/libz/deflate.c
2117
Assert(scan <= s->window + (uInt)(s->window_size - 1),
sys/lib/libz/deflate.c
251
uInt wsize = s->w_size;
sys/lib/libz/deflate.c
312
uInt str = s->strstart - s->insert;
sys/lib/libz/deflate.c
445
s->w_bits = (uInt)windowBits;
sys/lib/libz/deflate.c
449
s->hash_bits = (uInt)memLevel + 7;
sys/lib/libz/deflate.c
556
uInt dictLength) {
sys/lib/libz/deflate.c
558
uInt str, n;
sys/lib/libz/deflate.c
622
uInt *dictLength) {
sys/lib/libz/deflate.c
624
uInt len;
sys/lib/libz/deflate.c
821
s->good_match = (uInt)good_length;
sys/lib/libz/deflate.c
822
s->max_lazy_match = (uInt)max_lazy;
sys/lib/libz/deflate.c
824
s->max_chain_length = (uInt)max_chain;
sys/lib/libz/deflate.c
935
local void putShortMSB(deflate_state *s, uInt b) {
sys/lib/libz/deflate.h
117
uInt w_size; /* LZ77 window size (32K by default) */
sys/lib/libz/deflate.h
118
uInt w_bits; /* log2(w_size) (8..16) */
sys/lib/libz/deflate.h
119
uInt w_mask; /* w_size - 1 */
sys/lib/libz/deflate.h
144
uInt ins_h; /* hash index of string to be inserted */
sys/lib/libz/deflate.h
145
uInt hash_size; /* number of elements in hash table */
sys/lib/libz/deflate.h
146
uInt hash_bits; /* log2(hash_size) */
sys/lib/libz/deflate.h
147
uInt hash_mask; /* hash_size-1 */
sys/lib/libz/deflate.h
149
uInt hash_shift;
sys/lib/libz/deflate.h
161
uInt match_length; /* length of best match */
sys/lib/libz/deflate.h
164
uInt strstart; /* start of string to insert */
sys/lib/libz/deflate.h
165
uInt match_start; /* start of matching string */
sys/lib/libz/deflate.h
166
uInt lookahead; /* number of valid bytes ahead in window */
sys/lib/libz/deflate.h
168
uInt prev_length;
sys/lib/libz/deflate.h
173
uInt max_chain_length;
sys/lib/libz/deflate.h
179
uInt max_lazy_match;
sys/lib/libz/deflate.h
193
uInt good_match;
sys/lib/libz/deflate.h
231
uInt lit_bufsize;
sys/lib/libz/deflate.h
251
uInt sym_next; /* running index in symbol buffer */
sys/lib/libz/deflate.h
252
uInt sym_end; /* symbol table full when sym_next reaches this */
sys/lib/libz/deflate.h
256
uInt matches; /* number of string matches in current block */
sys/lib/libz/deflate.h
257
uInt insert; /* bytes at end of window left to insert */
sys/lib/libz/infback.c
57
state->wbits = (uInt)windowBits;
sys/lib/libz/inflate.c
1254
uInt *dictLength) {
sys/lib/libz/inflate.c
1274
uInt dictLength) {
sys/lib/libz/inflate.c
231
if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR;
sys/lib/libz/inflate.c
234
state->bits += (uInt)bits;
sys/lib/libz/zconf.h
414
typedef uInt FAR uIntf;
sys/lib/libz/zlib.h
124
uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
sys/lib/libz/zlib.h
125
uInt extra_max; /* space at extra (only when reading header) */
sys/lib/libz/zlib.h
127
uInt name_max; /* space at name (only when reading header) */
sys/lib/libz/zlib.h
129
uInt comm_max; /* space at comment (only when reading header) */
sys/lib/libz/zlib.h
1809
ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
sys/lib/libz/zlib.h
1848
ZEXTERN uLong ZEXPORT crc32(uLong crc, const Bytef *buf, uInt len);
sys/lib/libz/zlib.h
620
uInt dictLength);
sys/lib/libz/zlib.h
664
uInt *dictLength);
sys/lib/libz/zlib.h
85
typedef voidpf (*alloc_func)(voidpf opaque, uInt items, uInt size);
sys/lib/libz/zlib.h
86
typedef void (*free_func)(voidpf opaque, voidpf address, uInt size);
sys/lib/libz/zlib.h
915
uInt dictLength);
sys/lib/libz/zlib.h
92
uInt avail_in; /* number of bytes available at next_in */
sys/lib/libz/zlib.h
938
uInt *dictLength);
sys/lib/libz/zlib.h
96
uInt avail_out; /* remaining free space at next_out */
sys/lib/libz/zutil.c
278
voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) {
sys/lib/libz/zutil.c
296
extern voidp malloc(uInt size);
sys/lib/libz/zutil.c
297
extern voidp calloc(uInt items, uInt size);
sys/lib/libz/zutil.c
36
switch ((int)(sizeof(uInt))) {
usr.bin/compress/gzopen.c
185
uInt len;
usr.bin/compress/gzopen.c
215
len = (uInt)get_byte(s);
usr.bin/compress/gzopen.c
216
len += ((uInt)get_byte(s))<<8;
usr.bin/compress/gzopen.c
298
(uInt)(s->z_stream.next_out - start));
usr.bin/compress/gzopen.c
325
(uInt)(s->z_stream.next_out - start));
usr.bin/compress/zipopen.c
358
(uInt)(s->z_stream.next_out - ubuf));
usr.bin/compress/zipopen.c
369
(uInt)(s->z_stream.next_out - ubuf));