| /xnu-8792.61.2/libkern/libkern/ |
| H A D | zlib.h | 110 Bytef *next_in;/* next input byte */ 114 Bytef *next_out;/* next output byte should be put there */ 141 Bytef *extra; /* pointer to extra field or Z_NULL if none */ 144 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ 146 Bytef *comment;/* pointer to zero-terminated comment or Z_NULL */ 568 const Bytef *dictionary, 626 typedef int (*z_input_func) (z_streamp strm, Bytef *buf, unsigned size); 627 typedef int (*z_output_func)(z_streamp strm, Bytef *buf, unsigned size); 775 const Bytef *dictionary, 1047 ZEXTERN int ZEXPORT compress OF((Bytef * dest, uLongf *destLen, [all …]
|
| H A D | zconf.h | 80 # define Bytef z_Bytef macro 295 # define Bytef Byte FAR macro 297 typedef Byte FAR Bytef; typedef
|
| /xnu-8792.61.2/libkern/zlib/ |
| H A D | compress.c | 54 compress2(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, in compress2() 60 stream.next_in = (Bytef*)source; in compress2() 91 compress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) in compress()
|
| H A D | uncompr.c | 58 uncompress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) in uncompress() 63 stream.next_in = (Bytef*)source; in uncompress()
|
| H A D | zutil.c | 177 zmemcpy(Bytef* dest, const Bytef* source, uInt len) in zmemcpy() 186 zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) in zmemcmp() 197 zmemzero(Bytef* dest, uInt len) in zmemzero()
|
| 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 | deflate.h | 126 Bytef *pending_buf; /* output still pending */ 128 Bytef *pending_out; /* next pending byte to output to the stream */ 142 Bytef *window;
|
| H A D | deflate.c | 112 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size)); 228 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); 307 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); in deflateInit2_() 336 deflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in deflateSetDictionary() 711 Bytef val; in deflate() 742 Bytef val; in deflate() 947 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); in deflateCopy() 984 read_buf(z_streamp strm, Bytef *buf, unsigned size) in read_buf() 1057 Bytef *scan = s->window + s->strstart; /* current string */ in longest_match() 1058 Bytef *match; /* matched string */ in longest_match() [all …]
|
| H A D | adler32.c | 91 adler32(uLong adler, const Bytef *buf, uInt len) in adler32()
|
| H A D | inflate.c | 739 state->head->name[state->length++] = (Bytef)len; in inflate() 761 state->head->comment[state->length++] = (Bytef)len; in inflate() 1215 inflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in inflateSetDictionary()
|
| H A D | trees.c | 1150 if (&s->pending_buf[s->pending] > (Bytef *)&s->d_buf[lx]) {
|
| /xnu-8792.61.2/osfmk/kdp/output_stages/ |
| H A D | out_zlib.c | 78 zlib_zoutput(z_streamp strm, Bytef *buf, unsigned len) in zlib_zoutput() 99 zlib_zinput(z_streamp strm, Bytef *buf, unsigned size) in zlib_zinput() 111 if (strm->next_in != (Bytef *) strm) { in zlib_zinput() 146 zs->next_in = data ? data : (Bytef *) zs /* zero marker */; in zlib_stream_output_chunk() 151 zs->next_out = (Bytef *) zs; in zlib_stream_output_chunk()
|
| /xnu-8792.61.2/iokit/Kernel/ |
| H A D | IOPMrootDomain.cpp | 12056 Bytef * outbuf; 12073 swd_zinput(z_streamp strm, Bytef *buf, unsigned size) in swd_zinput() 12086 if (strm->next_in != (Bytef *) strm) { in swd_zinput() 12102 swd_zoutput(z_streamp strm, Bytef *buf, unsigned len) in swd_zoutput() 12154 swd_zip_var.outbuf = (Bytef *)outPtr; in swd_compress() 12171 zs->next_in = (unsigned char *)inPtr ? (Bytef *)inPtr : (Bytef *)zs; /* zero marker? */ in swd_compress() 12175 zs->next_out = (Bytef *)zs; in swd_compress() 12195 zs->next_out = (Bytef *)zs; in swd_compress()
|
| /xnu-8792.61.2/iokit/Tests/ |
| H A D | Tests.cpp | 775 strm.next_in = (Bytef *) &reproData[0]; in TestZLib()
|