Lines Matching refs:inflateBack
480 instead use raw inflate, see inflateInit2() below, or inflateBack() and
952 Initialize the internal stream state for decompression using inflateBack()
962 See inflateBack() for the usage of these routines.
973 ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
977 inflateBack() does a raw inflate with a single call using a call-back
982 the output function, at least until inflateBack() returns.
986 inflateBack() may then be used multiple times to inflate a complete, raw
998 inflateBack() uses two subroutines supplied by the caller that are then
999 called by inflateBack() for input and output. inflateBack() calls those
1003 typedefs. inflateBack() will call in(in_desc, &buf) which should return the
1006 case--and inflateBack() will return a buffer error. inflateBack() will call
1009 non-zero, inflateBack() will return with an error. Neither in() nor out()
1015 For convenience, inflateBack() can be provided input on the first call by
1018 calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called
1023 The in_desc and out_desc parameters of inflateBack() is passed as the
1028 On return, inflateBack() will set strm->next_in and strm->avail_in to
1030 return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR
1038 assured to be defined if out() returns non-zero.) Note that inflateBack()