Lines Matching refs:strm

224 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
246 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
334 deflate() sets strm->adler to the adler32 checksum of all input read
337 deflate() may update strm->data_type if it can make a good guess about
353 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
368 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
392 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
431 Also to assist in this, on return inflate() will set strm->data_type to the
432 number of unused bits in the last byte taken from strm->next_in, plus 64 if
437 data from that block has been written to strm->next_out. The number of
448 256 is added to the value of strm->data_type when inflate() returns
475 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
477 strm->adler to the Adler-32 checksum of all output produced so far (that is,
489 gzip-wrapped deflate data, strm->adler32 is set to the CRC-32 of the output
508 ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
527 ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm,
556 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
587 ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
617 Upon return of this function, strm->adler is set to the adler32 value
622 adler32 value is not computed and strm->adler is not set.
649 ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm));
660 ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
674 compressed and flushed. In particular, strm->avail_out must be non-zero.
678 strm->avail_out was zero.
681 ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm,
698 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
713 ZEXTERN int ZEXPORT deflatePending OF((z_streamp strm,
728 ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm,
745 ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm,
770 ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm,
804 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
819 ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm,
842 ZEXTERN int ZEXPORT inflateGetDictionary OF((z_streamp strm,
857 ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm));
892 ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm));
902 ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm,
914 ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm,
935 ZEXTERN long ZEXPORT inflateMark OF((z_streamp strm));
963 ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm,
1004 ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits,
1008 calls. The fields zalloc, zfree and opaque in strm must be initialized
1029 ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
1073 setting strm->next_in and strm->avail_in. If that input is exhausted, then
1074 in() will be called. Therefore strm->next_in must be initialized before
1075 calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called
1076 immediately for input. If strm->next_in is not Z_NULL, then strm->avail_in
1077 must also be initialized, and then if strm->avail_in is not zero, input will
1078 initially be taken from strm->next_in[0 .. strm->avail_in - 1].
1085 On return, inflateBack() will set strm->next_in and strm->avail_in to
1089 in the deflate stream (in which case strm->msg is set to indicate the nature
1092 using strm->next_in which will be Z_NULL only if in() returned an error. If
1093 strm->next_in is not Z_NULL, then the Z_BUF_ERROR was due to out() returning
1094 non-zero. (in() will always be called before out(), so strm->next_in is
1099 ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm));
1633 ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level,
1635 ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm,
1637 ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method,
1641 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1643 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1647 #define deflateInit(strm, level) \
1648 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream))
1649 #define inflateInit(strm) \
1650 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream))
1651 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1652 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1654 #define inflateInit2(strm, windowBits) \
1655 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1657 #define inflateBackInit(strm, windowBits, window) \
1658 inflateBackInit_((strm), (windowBits), (window), \