Home
last modified time | relevance | path

Searched refs:z_streamp (Results 1 – 25 of 32) sorted by relevance

12

/dragonfly/contrib/zlib-1.2/
H A Dzlib.h108 typedef z_stream FAR *z_streamp; typedef
363 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
520 ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
677 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
706 ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
743 ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm,
790 ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm,
941 ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
981 ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm,
1096 ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
[all …]
H A Dinflate.c106 z_streamp strm; in inflateStateCheck()
120 z_streamp strm; in inflateResetKeep()
145 z_streamp strm; in inflateReset()
158 z_streamp strm; in inflateReset2()
196 z_streamp strm; in inflateInit2_()
240 z_streamp strm; in inflateInit_()
248 z_streamp strm; in inflatePrime()
397 z_streamp strm; in updatewindow()
623 z_streamp strm; in inflate()
1278 z_streamp strm; in inflateEnd()
[all …]
H A Ddeflate.c229 z_streamp strm; in deflateInit_()
242 z_streamp strm; in deflateInit2_()
354 z_streamp strm; in deflateStateCheck()
377 z_streamp strm; in deflateSetDictionary()
446 z_streamp strm; in deflateGetDictionary()
468 z_streamp strm; in deflateResetKeep()
506 z_streamp strm; in deflateReset()
518 z_streamp strm; in deflateSetHeader()
531 z_streamp strm;
543 z_streamp strm; in deflatePrime()
[all …]
H A Dgzwrite.c21 z_streamp strm = &(state->strm);
79 z_streamp strm = &(state->strm);
151 z_streamp strm = &(state->strm);
311 z_streamp strm;
385 z_streamp strm; in gzvprintf()
475 z_streamp strm;
591 z_streamp strm;
H A Dgzread.c60 z_streamp strm = &(state->strm);
94 z_streamp strm = &(state->strm);
180 z_streamp strm = &(state->strm);
232 z_streamp strm = &(state->strm);
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
H A Dinflate.h83 z_streamp strm; /* pointer back to this zlib stream */
H A Dinfback.c29 z_streamp strm; in inflateBackInit_()
251 z_streamp strm; in inflateBack()
632 z_streamp strm; in inflateBackEnd()
/dragonfly/sys/net/
H A Dzlib.h299 typedef z_stream FAR *z_streamp; typedef
409 extern int EXPORT deflate OF((z_streamp strm, int flush));
484 extern int EXPORT deflateEnd OF((z_streamp strm));
517 extern int EXPORT inflate OF((z_streamp strm, int flush));
575 extern int EXPORT inflateEnd OF((z_streamp strm));
680 extern int EXPORT deflateCopy OF((z_streamp dest,
681 z_streamp source));
703 extern int EXPORT deflateReset OF((z_streamp strm));
793 extern int EXPORT inflateSync OF((z_streamp strm));
808 extern int EXPORT inflateReset OF((z_streamp strm));
[all …]
H A Dzlib.c1139 deflateCopy(z_streamp dest, z_streamp source) in deflateCopy()
3034 z_streamp z,
3040 z_streamp ,
3045 z_streamp ,
3050 z_streamp ,
3060 z_streamp));
3519 z_streamp ));
3523 z_streamp ,
3528 z_streamp ));
3626 z_streamp ,
[all …]
/dragonfly/sys/vfs/hammer2/zlib/
H A Dhammer2_zlib.h101 typedef z_stream FAR *z_streamp; typedef
195 int deflateInit(z_streamp strm, int level);
220 int deflate(z_streamp strm, int flush);
327 int deflateEnd(z_streamp strm);
340 int inflateInit(z_streamp strm);
367 int inflate(z_streamp strm, int flush);
483 int inflateEnd(z_streamp strm);
526 int deflateInit_(z_streamp strm, int level,
528 int inflateInit_(z_streamp strm,
H A Dhammer2_zlib_inflate.c101 int inflateResetKeep(z_streamp strm);
102 int inflateReset(z_streamp strm);
103 int inflateReset2(z_streamp strm, int windowBits);
106 int inflatePrime(z_streamp strm, int bits, int value);
115 inflateResetKeep(z_streamp strm) in inflateResetKeep()
139 inflateReset(z_streamp strm) in inflateReset()
152 inflateReset2(z_streamp strm, int windowBits) in inflateReset2()
216 inflatePrime(z_streamp strm, int bits, int value) in inflatePrime()
366 updatewindow(z_streamp strm, const Bytef *end, unsigned copy) in updatewindow()
556 inflate(z_streamp strm, int flush) in inflate()
[all …]
H A Dhammer2_zlib_deflate.c90 local void flush_pending(z_streamp strm);
91 local int read_buf(z_streamp strm, Bytef *buf, unsigned size);
107 int deflateReset (z_streamp strm);
108 int deflateResetKeep (z_streamp strm);
207 deflateInit2_(z_streamp strm, int level, int method, int windowBits, in deflateInit2_()
285 deflateResetKeep (z_streamp strm) in deflateResetKeep()
315 deflateReset (z_streamp strm) in deflateReset()
346 flush_pending(z_streamp strm) in flush_pending()
369 deflate (z_streamp strm, int flush) in deflate()
514 deflateEnd (z_streamp strm) in deflateEnd()
[all …]
H A Dhammer2_zlib_inffast.h11 void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start);
H A Dhammer2_zlib_deflate.h90 z_streamp strm; /* pointer back to this zlib stream */
/dragonfly/usr.sbin/makefs/hammer2/zlib/
H A Dhammer2_zlib.h101 typedef z_stream FAR *z_streamp; typedef
195 int deflateInit(z_streamp strm, int level);
220 int deflate(z_streamp strm, int flush);
327 int deflateEnd(z_streamp strm);
340 int inflateInit(z_streamp strm);
367 int inflate(z_streamp strm, int flush);
483 int inflateEnd(z_streamp strm);
526 int deflateInit_(z_streamp strm, int level,
528 int inflateInit_(z_streamp strm,
H A Dhammer2_zlib_inflate.c101 int inflateResetKeep(z_streamp strm);
102 int inflateReset(z_streamp strm);
103 int inflateReset2(z_streamp strm, int windowBits);
106 int inflatePrime(z_streamp strm, int bits, int value);
115 inflateResetKeep(z_streamp strm) in inflateResetKeep()
139 inflateReset(z_streamp strm) in inflateReset()
152 inflateReset2(z_streamp strm, int windowBits) in inflateReset2()
216 inflatePrime(z_streamp strm, int bits, int value) in inflatePrime()
366 updatewindow(z_streamp strm, const Bytef *end, unsigned copy) in updatewindow()
556 inflate(z_streamp strm, int flush) in inflate()
[all …]
H A Dhammer2_zlib_deflate.c90 local void flush_pending(z_streamp strm);
91 local int read_buf(z_streamp strm, Bytef *buf, unsigned size);
107 int deflateReset (z_streamp strm);
108 int deflateResetKeep (z_streamp strm);
207 deflateInit2_(z_streamp strm, int level, int method, int windowBits, in deflateInit2_()
285 deflateResetKeep (z_streamp strm) in deflateResetKeep()
315 deflateReset (z_streamp strm) in deflateReset()
346 flush_pending(z_streamp strm) in flush_pending()
369 deflate (z_streamp strm, int flush) in deflate()
514 deflateEnd (z_streamp strm) in deflateEnd()
[all …]
H A Dhammer2_zlib_inffast.h11 void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start);
H A Dhammer2_zlib_deflate.h90 z_streamp strm; /* pointer back to this zlib stream */
/dragonfly/sbin/hammer2/zlib/
H A Dhammer2_zlib.h101 typedef z_stream FAR *z_streamp; typedef
195 int deflateInit(z_streamp strm, int level);
220 int deflate(z_streamp strm, int flush);
327 int deflateEnd(z_streamp strm);
340 int inflateInit(z_streamp strm);
367 int inflate(z_streamp strm, int flush);
483 int inflateEnd(z_streamp strm);
526 int deflateInit_(z_streamp strm, int level,
528 int inflateInit_(z_streamp strm,
H A Dhammer2_zlib_inflate.c96 int inflateResetKeep(z_streamp strm);
97 int inflateReset(z_streamp strm);
98 int inflateReset2(z_streamp strm, int windowBits);
101 int inflatePrime(z_streamp strm, int bits, int value);
110 inflateResetKeep(z_streamp strm) in inflateResetKeep()
134 inflateReset(z_streamp strm) in inflateReset()
147 inflateReset2(z_streamp strm, int windowBits) in inflateReset2()
211 inflatePrime(z_streamp strm, int bits, int value) in inflatePrime()
361 updatewindow(z_streamp strm, const Bytef *end, unsigned copy) in updatewindow()
551 inflate(z_streamp strm, int flush) in inflate()
[all …]
H A Dhammer2_zlib_deflate.c85 local void flush_pending(z_streamp strm);
86 local int read_buf(z_streamp strm, Bytef *buf, unsigned size);
102 int deflateReset (z_streamp strm);
103 int deflateResetKeep (z_streamp strm);
202 deflateInit2_(z_streamp strm, int level, int method, int windowBits, in deflateInit2_()
280 deflateResetKeep (z_streamp strm) in deflateResetKeep()
310 deflateReset (z_streamp strm) in deflateReset()
341 flush_pending(z_streamp strm) in flush_pending()
364 deflate (z_streamp strm, int flush) in deflate()
509 deflateEnd (z_streamp strm) in deflateEnd()
[all …]
H A Dhammer2_zlib_inffast.h11 void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start);
H A Dhammer2_zlib_deflate.h90 z_streamp strm; /* pointer back to this zlib stream */

12