Searched refs:uInt (Results 1 - 14 of 14) sorted by relevance

/xnu-2782.1.97/osfmk/prng/YarrowCoreLib/src/
H A Dcomp.h67 typedef unsigned uInt; typedef
76 uInt spaceused;
89 comp_error_status comp_add_data(COMP_CTX* ctx,Bytef* inp,uInt inplen);
H A Dcomp.c49 __unused uInt inplen )
112 comp_error_status comp_add_data(COMP_CTX* ctx,Bytef* inp,uInt inplen)
114 uInt shifts;
115 uInt blocksize;
133 shifts = (uInt)ceil((inplen+ctx->spaceused-BUFSIZE)/(float)SHIFTSIZE);
/xnu-2782.1.97/libkern/zlib/
H A Ddeflate.h127 uInt pending; /* nb of bytes in the pending buffer */
130 uInt gzindex; /* where in extra, name, or comment */
136 uInt w_size; /* LZ77 window size (32K by default) */
137 uInt w_bits; /* log2(w_size) (8..16) */
138 uInt w_mask; /* w_size - 1 */
163 uInt ins_h; /* hash index of string to be inserted */
164 uInt hash_size; /* number of elements in hash table */
165 uInt hash_bits; /* log2(hash_size) */
166 uInt hash_mask; /* hash_size-1 */
168 uInt hash_shif
[all...]
H A Dzutil.c64 switch (sizeof(uInt)) {
179 uInt len;
190 uInt len;
192 uInt j;
202 uInt len;
323 extern voidp malloc OF((uInt size));
324 extern voidp calloc OF((uInt items, uInt size));
334 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
H A Dcompress.c64 stream.avail_in = (uInt)sourceLen;
70 stream.avail_out = (uInt)*destLen;
H A Duncompr.c67 stream.avail_in = (uInt)sourceLen;
72 stream.avail_out = (uInt)*destLen;
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));
347 uInt dictLength;
350 uInt length = dictLength;
351 uInt n;
549 uInt b;
654 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
655 uInt level_flag
[all...]
H A Dgzio.c66 extern voidp malloc OF((uInt size));
294 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
320 uInt len;
330 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
361 len = (uInt)get_byte(s);
362 len += ((uInt)get_byte(s))<<8;
456 uInt n = s->stream.avail_in;
468 (uInt)fread(next_out, 1, s->stream.avail_out, s->file);
479 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
497 s->crc = z_crc32(s->crc, start, (uInt)(
[all...]
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.c93 uInt len;
H A Dtrees.c1138 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
H A Dinflate.c1201 uInt dictLength;
/xnu-2782.1.97/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));
767 uInt dictLengt
[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;

Completed in 43 milliseconds