Home
last modified time | relevance | path

Searched refs:inflate (Results 1 – 25 of 36) sorted by relevance

12

/f-stack/app/nginx-1.16.1/auto/lib/zlib/
H A Dmakefile.bcc13 inflate.c inffast.c inftrees.c
17 +inflate.obj +inffast.obj +inftrees.obj
H A Dmakefile.owc12 compress.c inflate.c inffast.c inftrees.c
14 zutil.obj compress.obj inflate.obj inffast.obj inftrees.obj
H A Dmakefile.msvc13 inflate.c inffast.c inftrees.c
17 inflate.obj inffast.obj inftrees.obj
/f-stack/freebsd/contrib/zlib/test/
H A Dinfcover.c320 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err); in inf()
333 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_BUF_ERROR); in inf()
394 ret = inflate(Z_NULL, 0); assert(ret == Z_STREAM_ERROR); in cover_wrap()
422 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR); in cover_wrap()
423 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR); in cover_wrap()
433 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_STREAM_ERROR); in cover_wrap()
541 ret = inflate(&strm, Z_TREES); in try()
H A Dexample.c260 err = inflate(&d_stream, Z_NO_FLUSH);
356 err = inflate(&d_stream, Z_NO_FLUSH);
435 err = inflate(&d_stream, Z_NO_FLUSH);
442 err = inflate(&d_stream, Z_FINISH);
517 err = inflate(&d_stream, Z_NO_FLUSH);
/f-stack/freebsd/contrib/zlib/doc/
H A Dalgorithm.txt58 2. Decompression algorithm (inflate)
67 inflate() sets up a first level table that covers some number of bits of
71 the value, else it will point to the next level table for which inflate()
79 codes are replicated many times in such a table. What inflate() does is
83 For inflate, which has 286 possible codes for the literal/length tree, the size
92 2.2 More details on the inflate table lookup
94 Ok, you want to know what this cleverly obfuscated inflate tree actually
110 inflate, two is enough.
189 There, I think that gives you a picture of what's going on. For inflate, the
/f-stack/freebsd/contrib/zlib/
H A DChangeLog254 - Test the inflate code with full coverage
661 - Fix structure size comment in inflate.h
917 - Clean up FAR usage in inflate
986 - New and improved inflate code
1026 - Document raw deflate and inflate
1142 - simplify the inflate code (Mark):
1146 . Simplify Z_FINISH check in inflate()
1277 - Removed some vestigial code in inflate
1432 - optimized inflate on stored blocks.
1457 - added fast inflate (inffast.c)
[all …]
H A Duncompr.c70 err = inflate(&stream, Z_NO_FLUSH);
H A DFAQ33 5. deflate() or inflate() returns Z_BUF_ERROR.
38 Z_BUF_ERROR is not fatal--another call to deflate() or inflate() can be
149 format using deflateInit2(). You can also request that inflate decode the
228 30. Is there some simpler, easier to read version of inflate I can look at to
243 Yes. inflate() and deflate() will process any amount of data correctly.
244 Each call of inflate() or deflate() is limited to input and output chunks
249 inflate() or deflate(). The application can easily set up its own counters
250 updated after each call of inflate() or deflate() to count beyond 4 GB.
H A Dzconf.h107 # define inflate z_inflate macro
/f-stack/freebsd/contrib/zstd/zlibWrapper/examples/
H A Dexample_original.c277 err = inflate(&d_stream, Z_NO_FLUSH);
373 err = inflate(&d_stream, Z_NO_FLUSH);
452 inflate(&d_stream, Z_NO_FLUSH);
459 err = inflate(&d_stream, Z_FINISH);
534 err = inflate(&d_stream, Z_NO_FLUSH);
H A Dexample.c285 err = inflate(&d_stream, Z_NO_FLUSH);
381 err = inflate(&d_stream, Z_NO_FLUSH);
460 inflate(&d_stream, Z_NO_FLUSH);
467 err = inflate(&d_stream, Z_FINISH);
542 err = inflate(&d_stream, Z_NO_FLUSH);
H A Dfitblk_original.c106 ret = inflate(inf, Z_NO_FLUSH); in recompress()
H A Dzwrapbench.c460 ret = inflate(&inf, Z_FINISH); in BMK_benchMem()
464 ret = inflate(&inf, Z_FINISH); in BMK_benchMem()
492 ret = inflate(&inf, Z_FINISH); in BMK_benchMem()
496 ret = inflate(&inf, Z_FINISH); in BMK_benchMem()
H A Dfitblk.c115 ret = inflate(inf, Z_NO_FLUSH); in recompress()
/f-stack/freebsd/contrib/zstd/zlibWrapper/
H A DREADME.md53 inflate(): hello, hello!
56 inflate with dictionary: hello, hello!
67 inflate(): hello, hello!
69 inflate with dictionary: hello, hello!
136 - inflate
H A Dzstd_zlibwrapper.c723 int const result = inflate(strm, flush); in z_inflate()
754 inflate(strm, flush); in z_inflate()
786 { int const dErr = inflate(strm, Z_NO_FLUSH); in z_inflate()
805 inflate(strm, flush); in z_inflate()
/f-stack/freebsd/netgraph/
H A Dng_deflate.c597 rtn = inflate(&priv->cx, Z_SYNC_FLUSH); in ng_deflate_decompress()
621 inflate(&priv->cx, Z_SYNC_FLUSH); in ng_deflate_decompress()
667 rtn = inflate(&priv->cx, Z_NO_FLUSH); in ng_deflate_decompress()
680 rtn = inflate(&priv->cx, Z_SYNC_FLUSH); in ng_deflate_decompress()
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_zlib.c96 return (inflate(stream, finish)); in zlib_inflate()
/f-stack/freebsd/opencrypto/
H A Dcryptodeflate.c146 error = decomp ? inflate(&zbuf, Z_SYNC_FLUSH) : in deflate_global()
/f-stack/freebsd/contrib/zlib/contrib/
H A DREADME.contrib67 Small, low memory usage inflate. Also serves to provide an
/f-stack/freebsd/kern/
H A Dkern_ctf.c268 ret = inflate(&zs, Z_FINISH);
/f-stack/freebsd/contrib/openzfs/config/
H A Dkernel-config-defined.m4154 *** This kernel does not include the required zlib inflate support.
/f-stack/dpdk/drivers/net/qede/base/
H A Dbcm_osal.c245 rc = inflate(p_hwfn->stream, Z_FINISH); in qede_unzip_data()
/f-stack/dpdk/drivers/compress/zlib/
H A Dzlib_pmd.c137 ret = inflate(strm, flush); in process_zlib_inflate()

12