Searched refs:inflateBack (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.0-release/lib/libz/
H A DSymbol.map69 inflateBack;
H A Dzconf.h95 # define inflateBack z_inflateBack macro
H A Dzlib.h487 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() fo
[all...]
H A Dinfback.c125 /* Macros for inflateBack(): */
157 then return a Z_BUF_ERROR from inflateBack(). */
170 /* Get a byte of input into the bit accumulator, or return from inflateBack()
181 not enough available input to do that, then return from inflateBack() with
208 if it's full. If the write fails, return from inflateBack() with a
229 inflateBack() needs more input, it calls in(). When inflateBack() has
232 change the provided input until in() is called again or inflateBack()
234 inflateBack() returns.
237 inflateBack() cal
250 int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc) function
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzconf.h88 #define inflateBack z_inflateBack macro
H A Dzlib.h445 inflateBack() and perform their own processing of the gzip header and
861 Initialize the internal stream state for decompression using inflateBack()
871 See inflateBack() for the usage of these routines.
882 ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
886 inflateBack() does a raw inflate with a single call using a call-back
891 the output function, at least until inflateBack() returns.
895 inflateBack() may then be used multiple times to inflate a complete, raw
907 inflateBack() uses two subroutines supplied by the caller that are then
908 called by inflateBack() for input and output. inflateBack() call
[all...]
/freebsd-10.0-release/lib/libz/test/
H A Dinfcover.c446 /* input and output functions for inflateBack() */
469 /* cover inflateBack() up to common deflate data cases and after those */
479 ret = inflateBack(Z_NULL, Z_NULL, Z_NULL, Z_NULL, Z_NULL);
482 fputs("inflateBack bad parameters\n", stderr);
488 ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL);
493 ret = inflateBack(&strm, pull, Z_NULL, push, &strm);
496 ret = inflateBack(&strm, pull, &strm, push, Z_NULL);
499 mem_done(&strm, "inflateBack bad state");
503 fputs("inflateBack built-in memory routines\n", stderr);
506 /* do a raw inflate of data in hexadecimal with both inflate and inflateBack */
[all...]

Completed in 212 milliseconds