Searched refs:uInt (Results 1 – 13 of 13) sorted by relevance
| /xnu-11215/libkern/zlib/ |
| H A D | deflate.h | 139 uInt w_bits; /* log2(w_size) (8..16) */ 140 uInt w_mask; /* w_size - 1 */ 167 uInt hash_bits; /* log2(hash_size) */ 168 uInt hash_mask; /* hash_size-1 */ 170 uInt hash_shift; 189 uInt prev_length; 194 uInt max_chain_length; 200 uInt max_lazy_match; 214 uInt good_match; 245 uInt lit_bufsize; [all …]
|
| H A D | zutil.c | 64 switch (sizeof(uInt)) { in zlibCompileFlags() 177 zmemcpy(Bytef* dest, const Bytef* source, uInt len) in zmemcpy() 186 zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) in zmemcmp() 188 uInt j; in zmemcmp() 197 zmemzero(Bytef* dest, uInt len) in zmemzero() 322 extern voidp malloc OF((uInt size)); 323 extern voidp calloc OF((uInt items, uInt size)); 331 if (sizeof(uInt) > 2) { in zcalloc()
|
| H A D | deflate.c | 339 uInt length = dictLength; in deflateSetDictionary() 340 uInt n; in deflateSetDictionary() 545 putShortMSB(deflate_state *s, uInt b) in putShortMSB() 654 uInt level_flags; in deflate() 1053 local uInt 1068 uInt wmask = s->w_mask; in longest_match() 1192 if ((uInt)best_len <= s->lookahead) return (uInt)best_len; in longest_match() 1202 local uInt 1252 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead; in longest_match_fast() 1297 uInt wsize = s->w_size; in fill_window() [all …]
|
| H A D | uncompr.c | 64 stream.avail_in = (uInt)sourceLen; in uncompress() 69 stream.avail_out = (uInt)*destLen; in uncompress()
|
| H A D | compress.c | 61 stream.avail_in = (uInt)sourceLen; in compress2() 67 stream.avail_out = (uInt)*destLen; in compress2()
|
| H A D | zutil.h | 277 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 278 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 279 extern void zmemzero OF((Bytef* dest, uInt len));
|
| H A D | adler32.c | 91 adler32(uLong adler, const Bytef *buf, uInt len) in adler32()
|
| H A D | trees.c | 1180 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
|
| H A D | inflate.c | 1215 inflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in inflateSetDictionary()
|
| /xnu-11215/libkern/libkern/ |
| H A D | zlib.h | 104 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 111 uInt avail_in;/* number of bytes available at next_in */ 115 uInt avail_out;/* remaining free space at next_out */ 142 uInt extra_len;/* extra field length (valid if extra != Z_NULL) */ 143 uInt extra_max;/* space at extra (only when reading header) */ 145 uInt name_max;/* space at name (only when reading header) */ 147 uInt comm_max;/* space at comment (only when reading header) */ 569 uInt dictLength)); 776 uInt dictLength)); 1307 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); [all …]
|
| H A D | zconf.h | 78 # define uInt z_uInt macro 290 typedef unsigned int uInt; /* 16 bits or more */ typedef 301 typedef uInt FAR uIntf;
|
| /xnu-11215/iokit/Tests/ |
| H A D | Tests.cpp | 775 strm.avail_out = (uInt) bound; in TestZLib() 778 strm.avail_in = (uInt) count; in TestZLib()
|
| /xnu-11215/tests/ |
| H A D | stackshot_tests.m | 2971 zs.avail_in = (uInt)totalout; 2974 zs.avail_out = (uInt)inflatedBufferSize;
|