Searched refs:inflate (Results 26 - 50 of 64) sorted by relevance

123

/freebsd-12-stable/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk.c101 return last deflate() return value, or Z_MEM_ERROR if inflate()
115 ret = inflate(inf, Z_NO_FLUSH);
146 z_stream def, inf; /* zlib deflate and inflate states */
H A Dzwrapbench.c448 ret = ZWRAP_inflateReset_keepDict(&inf); /* reuse dictionary to make decompression faster; inflate will return Z_NEED_DICT only for the first time */
458 ret = inflate(&inf, Z_FINISH);
462 ret = inflate(&inf, Z_FINISH);
464 if (ret != Z_STREAM_END) EXM_THROW(1, "inflate failure");
490 ret = inflate(&inf, Z_FINISH);
494 ret = inflate(&inf, Z_FINISH);
496 if (ret != Z_STREAM_END) EXM_THROW(1, "inflate failure");
H A Dminigzip.c149 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
286 ret = inflate(strm, Z_NO_FLUSH);
/freebsd-12-stable/sys/opencrypto/
H A Dcryptodeflate.c134 error = decomp ? inflate(&zbuf, Z_SYNC_FLUSH) :
/freebsd-12-stable/sys/modules/zfs/
H A DMakefile64 SRCS+= inflate.c
/freebsd-12-stable/stand/libsa/
H A Dgzipfs.c259 error = inflate(&zf->zf_zstream, Z_SYNC_FLUSH); /* decompression pass */
265 printf("inflate: %s\n", zf->zf_zstream.msg);
H A DMakefile103 SRCS+= infback.c inffast.c inflate.c inftrees.c zutil.c
H A Dpkgfs.c470 c = inflate(&pkg->pkg_zs, Z_SYNC_FLUSH);
/freebsd-12-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_gzip.c471 ret = inflate(&(state->stream), 0);
/freebsd-12-stable/sys/contrib/zlib/
H A Dzconf.h101 # define inflate z_inflate macro
281 The memory requirements for inflate are (in bytes) 1 << windowBits
H A Dgzread.c85 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
92 a user buffer. If decompressing, the inflate state will be initialized.
99 /* allocate read buffers and inflate memory */
112 /* allocate inflate memory */
188 /* get more input for inflate() */
197 ret = inflate(strm, Z_NO_FLUSH);
200 "internal error: inflate stream corrupt");
H A Dzlib.h103 for deflate, or the decoding state for inflate */
175 /* Allowed flush values; see deflate() and inflate() below for details */
382 the caller. In the current version of inflate, the provided input is not
384 the first call of inflate (if the decompression does not complete on the
393 Actual decompression will be done by inflate(). So next_in, and avail_in,
396 that is deferred until inflate() is called.
400 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
402 inflate decompresses as much data as possible, and stops when the input
407 The detailed semantics are as follows. inflate performs one or both of the
414 inflate()
[all...]
H A Dinflate.c0 /* inflate.c -- zlib decompression
10 * - First version -- complete rewrite of inflate to simplify code, avoid
13 * improve code readability and style over the previous zlib inflate code
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
53 * source file infback.c to provide a call-back interface to inflate fo
622 int ZEXPORT inflate(strm, flush) function
[all...]
/freebsd-12-stable/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c652 int const result = inflate(strm, flush);
683 inflate(strm, flush);
711 /* inflate header */
715 { int const dErr = inflate(strm, Z_NO_FLUSH);
716 LOG_WRAPPERD("ZLIB inflate errorCode=%d strm->avail_in=%d\n",
734 inflate(strm, flush);
792 LOG_WRAPPERD("inflate ZSTD_decompressStream1 errorCode=%d srcSize=%d dstCapacity=%d\n",
809 LOG_WRAPPERD("inflate ZSTD_decompressStream2 errorCode=%d srcSize=%d dstCapacity=%d\n",
817 LOG_WRAPPERD("inflate inBuffer.pos=%d inBuffer.size=%d outBuffer.pos=%d outBuffer.size=%d o\n",
827 LOG_WRAPPERD("inflate Z_STREAM_END
[all...]
H A Dgzread.c85 /* Look for gzip header, set up for inflate or copy. state.state->x.have must be 0.
92 a user buffer. If decompressing, the inflate state will be initialized.
99 /* allocate read buffers and inflate memory */
112 /* allocate inflate memory */
189 /* get more input for inflate() */
198 ret = inflate(strm, Z_NO_FLUSH);
201 "internal error: inflate stream corrupt");
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzlib.h170 /* Allowed flush values; see deflate() and inflate() below for details */
202 /* Possible values of the data_type field (though see inflate()) */
353 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
360 the zlib header if present: this will be done by inflate(). (So next_in and
365 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
367 inflate decompresses as much data as possible, and stops when the input
372 The detailed semantics are as follows. inflate performs one or both of the
378 will resume at this point for the next call of inflate().
381 accordingly. inflate() provides as much output as possible, until there
385 Before the call of inflate(), th
[all...]
H A Dinflate.c6 /* inflate.c -- zlib decompression
17 * - First version -- complete rewrite of inflate to simplify code, avoid
20 * improve code readability and style over the previous zlib inflate code
31 * - Correct filename to inffixed.h for fixed tables in inflate.c
32 * - Make hbuf[] unsigned char to match parameter type in inflate.c
34 * to avoid negation problem on Alphas (64 bit) in inflate.c
44 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * buffer and bit count in inflate()--for speed when inflate_fast() not used
50 * - Move a comment on output buffer sizes from inffast.c to inflate.c
60 * source file infback.c to provide a call-back interface to inflate fo
561 int ZEXPORT inflate(strm, flush) function
[all...]
/freebsd-12-stable/sys/kern/
H A Dkern_ctf.c284 ret = inflate(&zs, Z_FINISH);
287 printf("%s(%d): zlib inflate returned %d\n", __func__, __LINE__, ret);
/freebsd-12-stable/usr.sbin/fifolog/lib/
H A Dfifolog_reader.c291 i = inflate(zs, 0);
310 fprintf(stderr, "inflate = %d\n", i);
/freebsd-12-stable/sys/contrib/zlib/test/
H A Dminigzip.c146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
283 ret = inflate(strm, Z_NO_FLUSH);
/freebsd-12-stable/sys/netgraph/
H A Dng_deflate.c607 rtn = inflate(&priv->cx, Z_PACKET_FLUSH);
/freebsd-12-stable/contrib/file/src/
H A Dcompress.c580 rc = inflate(&z, Z_SYNC_FLUSH);
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/dump/
H A Ddump.c974 if ((rc = inflate(&zstr, Z_FINISH)) != Z_STREAM_END)
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp602 int status = inflate(&stream, Z_NO_FLUSH);
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c1316 (rc = inflate(&zstr, Z_NO_FLUSH)) != Z_STREAM_END ||

Completed in 408 milliseconds

123