Lines Matching refs:inflateBack
487 instead use raw inflate, see inflateInit2() below, or inflateBack() and
1007 Initialize the internal stream state for decompression using inflateBack()
1017 See inflateBack() for the usage of these routines.
1029 ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
1033 inflateBack() does a raw inflate with a single call using a call-back
1038 buffers. inflateBack() trusts the application to not change the output
1039 buffer passed by the output function, at least until inflateBack() returns.
1043 inflateBack() may then be used multiple times to inflate a complete, raw
1055 inflateBack() uses two subroutines supplied by the caller that are then
1056 called by inflateBack() for input and output. inflateBack() calls those
1060 typedefs. inflateBack() will call in(in_desc, &buf) which should return the
1063 case--and inflateBack() will return a buffer error. inflateBack() will call
1066 non-zero, inflateBack() will return with an error. Neither in() nor out()
1072 For convenience, inflateBack() can be provided input on the first call by
1075 calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called
1080 The in_desc and out_desc parameters of inflateBack() is passed as the
1085 On return, inflateBack() will set strm->next_in and strm->avail_in to
1087 return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR
1095 assured to be defined if out() returns non-zero.) Note that inflateBack()