Lines Matching defs:uInt
395 typedef unsigned int uInt; /* 16 bits or more */
406 typedef uInt FAR uIntf;
500 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
507 uInt avail_in; /* number of bytes available at next_in */
511 uInt avail_out; /* remaining free space at next_out */
775 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
776 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
777 extern void zmemzero OF((Bytef* dest, uInt len));
822 uInt len;
833 uInt len;
835 uInt j;
845 uInt len;
966 extern voidp malloc OF((uInt size));
967 extern voidp calloc OF((uInt items, uInt size));
978 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
1164 uInt len;
1310 uInt pending; /* nb of bytes in the pending buffer */
1313 uInt gzindex; /* where in extra, name, or comment */
1319 uInt w_size; /* LZ77 window size (32K by default) */
1320 uInt w_bits; /* log2(w_size) (8..16) */
1321 uInt w_mask; /* w_size - 1 */
1346 uInt ins_h; /* hash index of string to be inserted */
1347 uInt hash_size; /* number of elements in hash table */
1348 uInt hash_bits; /* log2(hash_size) */
1349 uInt hash_mask; /* hash_size-1 */
1351 uInt hash_shift;
1363 uInt match_length; /* length of best match */
1366 uInt strstart; /* start of string to insert */
1367 uInt match_start; /* start of matching string */
1368 uInt lookahead; /* number of valid bytes ahead in window */
1370 uInt prev_length;
1375 uInt max_chain_length;
1381 uInt max_lazy_match;
1395 uInt good_match;
1426 uInt lit_bufsize;
1446 uInt last_lit; /* running index in l_buf */
1456 uInt matches; /* number of string matches in current block */
3391 uInt dictLength;
3616 extern voidp malloc OF((uInt size));
3833 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
3859 uInt len;
3884 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
3916 len = (uInt)get_byte(s);
3917 len += ((uInt)get_byte(s))<<8;
4015 uInt n = s->stream.avail_in;
4027 (uInt)fread(next_out, 1, s->stream.avail_out, s->file);
4038 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
4059 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
4093 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));