Home
last modified time | relevance | path

Searched refs:Bytef (Results 1 – 14 of 14) sorted by relevance

/xnu-8792.61.2/libkern/libkern/
H A Dzlib.h110 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 Dzconf.h80 # 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 Dcompress.c54 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 Duncompr.c58 uncompress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) in uncompress()
63 stream.next_in = (Bytef*)source; in uncompress()
H A Dzutil.c177 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 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 Ddeflate.h126 Bytef *pending_buf; /* output still pending */
128 Bytef *pending_out; /* next pending byte to output to the stream */
142 Bytef *window;
H A Ddeflate.c112 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 Dadler32.c91 adler32(uLong adler, const Bytef *buf, uInt len) in adler32()
H A Dinflate.c739 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 Dtrees.c1150 if (&s->pending_buf[s->pending] > (Bytef *)&s->d_buf[lx]) {
/xnu-8792.61.2/osfmk/kdp/output_stages/
H A Dout_zlib.c78 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 DIOPMrootDomain.cpp12056 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 DTests.cpp775 strm.next_in = (Bytef *) &reproData[0]; in TestZLib()