Searched refs:Bytef (Results 1 - 25 of 42) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Dcompress.c23 Bytef *dest;
25 const Bytef *source;
32 stream.next_in = (Bytef*)source;
63 Bytef *dest;
65 const Bytef *source;
H A Duncompr.c27 Bytef *dest;
29 const Bytef *source;
35 stream.next_in = (Bytef*)source;
H A Dzlib.h83 Bytef *next_in; /* next input byte */
87 Bytef *next_out; /* next output byte should be put there */
114 Bytef *extra; /* pointer to extra field or Z_NULL if none */
117 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
119 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
539 const Bytef *dictionary,
737 const Bytef *dictionary,
1009 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1010 const Bytef *source, uLong sourceLen));
1024 ZEXTERN int ZEXPORT compress2 OF((Bytef *des
[all...]
H A Dzutil.c150 Bytef* dest;
151 const Bytef* source;
161 const Bytef* s1;
162 const Bytef* s2;
174 Bytef* dest;
H A Dzutil.h235 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
236 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
237 extern void zmemzero OF((Bytef* dest, uInt len));
H A Dzconf.h53 # define Bytef z_Bytef macro
268 # define Bytef Byte FAR macro
270 typedef Byte FAR Bytef; typedef
H A Dzconf.in.h53 # define Bytef z_Bytef macro
268 # define Bytef Byte FAR macro
270 typedef Byte FAR Bytef; typedef
H A Ddeflate.h97 Bytef *pending_buf; /* output still pending */
99 Bytef *pending_out; /* next pending byte to output to the stream */
113 Bytef *window;
H A Dexample.c66 err = compress(compr, &comprLen, (const Bytef*)hello, len);
184 c_stream.next_in = (Bytef*)hello;
359 c_stream.next_in = (Bytef*)hello;
441 (const Bytef*)dictionary, sizeof(dictionary));
448 c_stream.next_in = (Bytef*)hello;
493 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
H A Ddeflate.c85 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
201 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
287 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
317 const Bytef *dictionary;
920 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
958 Bytef *buf;
1032 register Bytef *scan = s->window + s->strstart; /* current string */
1033 register Bytef *match; /* matched string */
1049 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1053 register Bytef *stren
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Dcompress.c23 Bytef *dest;
25 const Bytef *source;
32 stream.next_in = (Bytef*)source;
63 Bytef *dest;
65 const Bytef *source;
H A Duncompr.c27 Bytef *dest;
29 const Bytef *source;
35 stream.next_in = (Bytef*)source;
H A Dzlib.h83 Bytef *next_in; /* next input byte */
87 Bytef *next_out; /* next output byte should be put there */
114 Bytef *extra; /* pointer to extra field or Z_NULL if none */
117 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
119 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
539 const Bytef *dictionary,
737 const Bytef *dictionary,
1009 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1010 const Bytef *source, uLong sourceLen));
1024 ZEXTERN int ZEXPORT compress2 OF((Bytef *des
[all...]
H A Dzutil.c150 Bytef* dest;
151 const Bytef* source;
161 const Bytef* s1;
162 const Bytef* s2;
174 Bytef* dest;
H A Dzutil.h235 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
236 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
237 extern void zmemzero OF((Bytef* dest, uInt len));
H A Dzconf.h53 # define Bytef z_Bytef macro
268 # define Bytef Byte FAR macro
270 typedef Byte FAR Bytef; typedef
H A Dzconf.in.h53 # define Bytef z_Bytef macro
268 # define Bytef Byte FAR macro
270 typedef Byte FAR Bytef; typedef
H A Ddeflate.h97 Bytef *pending_buf; /* output still pending */
99 Bytef *pending_out; /* next pending byte to output to the stream */
113 Bytef *window;
H A Dexample.c66 err = compress(compr, &comprLen, (const Bytef*)hello, len);
184 c_stream.next_in = (Bytef*)hello;
359 c_stream.next_in = (Bytef*)hello;
441 (const Bytef*)dictionary, sizeof(dictionary));
448 c_stream.next_in = (Bytef*)hello;
493 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/common/
H A Dzlib.h97 # define Bytef z_Bytef macro
215 # define Bytef Byte FAR macro
217 typedef Byte FAR Bytef; typedef
276 Bytef *next_in; /* next input byte */
280 Bytef *next_out; /* next output byte should be put there */
646 const Bytef *dictionary,
769 const Bytef *dictionary,
831 extern int EXPORT compress OF((Bytef *dest, uLongf *destLen,
832 const Bytef *source, uLong sourceLen));
846 extern int EXPORT uncompress OF((Bytef *des
[all...]
H A Dzlib.c218 extern void zmemcpy OF((Bytef* dest, Bytef* source, uInt len));
219 extern int zmemcmp OF((Bytef* s1, Bytef* s2, uInt len));
220 extern void zmemzero OF((Bytef* dest, uInt len));
246 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
344 Bytef *pending_buf; /* output still pending */
346 Bytef *pending_out; /* next pending byte to output to the stream */
359 Bytef *window;
795 s->window = (Bytef *) ZALLO
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/comp/
H A Dc_zlib.c32 static int zz_uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
65 static int stub_compress(Bytef *dest,uLongf *destLen,
66 const Bytef *source, uLong sourceLen);
73 typedef int (Z_CALLCONV *compress_ft)(Bytef *dest,uLongf *destLen,
74 const Bytef *source, uLong sourceLen);
151 static int zz_uncompress (Bytef *dest, uLongf *destLen, const Bytef *source,
157 stream.next_in = (Bytef*)source;
236 stub_compress(Bytef *des
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Dzlib.h117 typedef Byte FAR Bytef; typedef
160 Bytef *next_in; /* next input byte */
164 Bytef *next_out; /* next output byte should be put there */
610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dcontent_encoding.c96 Bytef *orig_in = z->next_in;
112 z->next_out = (Bytef *)decomp;
186 z->next_in = (Bytef *)k->str;
308 z->next_in = (Bytef *)k->str;
339 z->next_in = (Bytef *)k->str + hlen;
390 z->next_in = (Bytef *)k->str + hlen + nread - z->avail_in;
411 z->next_in = (Bytef *)k->str;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/comp/
H A Dc_zlib.c58 static int zz_uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
98 typedef int (*compress_ft)(Bytef *dest,uLongf *destLen,
99 const Bytef *source, uLong sourceLen);
305 static int zz_uncompress (Bytef *dest, uLongf *destLen, const Bytef *source,
311 stream.next_in = (Bytef*)source;

Completed in 131 milliseconds

12