Home | History | Annotate | Download | only in zlib_v128

Lines Matching defs:inflateBack

59 #define inflateBack FPDFAPI_inflateBack
556 instead use raw inflate, see inflateInit2() below, or inflateBack() and
1076 Initialize the internal stream state for decompression using inflateBack()
1086 See inflateBack() for the usage of these routines.
1098 ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
1102 inflateBack() does a raw inflate with a single call using a call-back
1107 buffers. inflateBack() trusts the application to not change the output
1108 buffer passed by the output function, at least until inflateBack() returns.
1112 inflateBack() may then be used multiple times to inflate a complete, raw
1124 inflateBack() uses two subroutines supplied by the caller that are then
1125 called by inflateBack() for input and output. inflateBack() calls those
1129 typedefs. inflateBack() will call in(in_desc, &buf) which should return the
1132 case--and inflateBack() will return a buffer error. inflateBack() will call
1135 non-zero, inflateBack() will return with an error. Neither in() nor out()
1141 For convenience, inflateBack() can be provided input on the first call by
1144 calling inflateBack(). If strm->next_in is Z_NULL, then in() will be called
1149 The in_desc and out_desc parameters of inflateBack() is passed as the
1154 On return, inflateBack() will set strm->next_in and strm->avail_in to
1156 return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR
1164 assured to be defined if out() returns non-zero.) Note that inflateBack()