Home
last modified time | relevance | path

Searched refs:uInt (Results 1 – 13 of 13) sorted by relevance

/xnu-12377.1.9/libkern/zlib/
H A Ddeflate.h129 uInt pending; /* nb of bytes in the pending buffer */
132 uInt gzindex; /* where in extra, name, or comment */
138 uInt w_size; /* LZ77 window size (32K by default) */
139 uInt w_bits; /* log2(w_size) (8..16) */
140 uInt w_mask; /* w_size - 1 */
165 uInt ins_h; /* hash index of string to be inserted */
166 uInt hash_size; /* number of elements in hash table */
167 uInt hash_bits; /* log2(hash_size) */
168 uInt hash_mask; /* hash_size-1 */
170 uInt hash_shift;
[all …]
H A Dzutil.c64 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 Ddeflate.c110 local void putShortMSB OF((deflate_state *s, uInt b));
116 uInt longest_match OF((deflate_state *s, IPos cur_match));
118 local uInt longest_match OF((deflate_state *s, IPos cur_match));
121 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
336 deflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in deflateSetDictionary()
339 uInt length = dictLength; in deflateSetDictionary()
340 uInt n; in deflateSetDictionary()
545 putShortMSB(deflate_state *s, uInt b) in putShortMSB()
653 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; in deflate()
654 uInt level_flags; in deflate()
[all …]
H A Duncompr.c64 stream.avail_in = (uInt)sourceLen; in uncompress()
69 stream.avail_out = (uInt)*destLen; in uncompress()
H A Dcompress.c61 stream.avail_in = (uInt)sourceLen; in compress2()
67 stream.avail_out = (uInt)*destLen; in compress2()
H A Dzutil.h277 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 Dadler32.c91 adler32(uLong adler, const Bytef *buf, uInt len) in adler32()
H A Dtrees.c1180 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
H A Dinflate.c1215 inflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in inflateSetDictionary()
/xnu-12377.1.9/libkern/libkern/
H A Dzlib.h104 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 Dzconf.h78 # define uInt z_uInt macro
290 typedef unsigned int uInt; /* 16 bits or more */ typedef
301 typedef uInt FAR uIntf;
/xnu-12377.1.9/iokit/Tests/
H A DTests.cpp775 strm.avail_out = (uInt) bound; in TestZLib()
778 strm.avail_in = (uInt) count; in TestZLib()
/xnu-12377.1.9/tests/
H A Dstackshot_tests.m3147 zs.avail_in = (uInt)totalout;
3150 zs.avail_out = (uInt)inflatedBufferSize;