Home
last modified time | relevance | path

Searched refs:deflate (Results 1 – 25 of 81) sorted by relevance

1234

/freebsd/sys/opencrypto/
H A Dcryptodeflate.c48 SDT_PROBE_DEFINE2(opencrypto, deflate, deflate_global, entry,
50 SDT_PROBE_DEFINE6(opencrypto, deflate, deflate_global, bad,
52 SDT_PROBE_DEFINE6(opencrypto, deflate, deflate_global, iter,
54 SDT_PROBE_DEFINE2(opencrypto, deflate, deflate_global, return,
92 SDT_PROBE2(opencrypto, deflate, deflate_global, entry, decomp, size); in deflate_global()
117 SDT_PROBE6(opencrypto, deflate, deflate_global, bad, in deflate_global()
137 SDT_PROBE6(opencrypto, deflate, deflate_global, bad, in deflate_global()
144 deflate(&zbuf, Z_FINISH); in deflate_global()
146 SDT_PROBE6(opencrypto, deflate, deflate_global, bad, in deflate_global()
151 SDT_PROBE6(opencrypto, deflate, deflate_global, iter, in deflate_global()
[all …]
/freebsd/sys/contrib/zstd/zlibWrapper/
H A DREADME.md92deflate()` or `deflateSetDictionary()`. The function is only helpful when data is compressed in bl…
99 - for the 1st file calls `deflateInit`, `deflate`, `...`, `deflate`, `deflateEnd`
100 - for the 2nd file calls `deflateInit`, `deflate`, `...`, `deflate`, `deflateEnd`
104 - for the 1st file call `deflate`, `...`, `deflate`
105 - for the 2nd file call `deflateReset`, `deflate`, `...`, `deflate`
130 - deflate (with exception of Z_FULL_FLUSH, Z_BLOCK, and Z_TREES)
/freebsd/sys/contrib/zlib/test/
H A Dexample.c183 err = deflate(&c_stream, Z_NO_FLUSH); in test_deflate()
189 err = deflate(&c_stream, Z_FINISH); in test_deflate()
260 err = deflate(&c_stream, Z_NO_FLUSH); in test_large_deflate()
271 err = deflate(&c_stream, Z_NO_FLUSH); in test_large_deflate()
278 err = deflate(&c_stream, Z_NO_FLUSH); in test_large_deflate()
281 err = deflate(&c_stream, Z_FINISH); in test_large_deflate()
348 err = deflate(&c_stream, Z_FULL_FLUSH); in test_flush()
354 err = deflate(&c_stream, Z_FINISH); in test_flush()
430 err = deflate(&c_stream, Z_FINISH); in test_dict_deflate()
/freebsd/sys/contrib/zlib/
H A DFAQ32 5. deflate() or inflate() returns Z_BUF_ERROR.
37 Z_BUF_ERROR is not fatal--another call to deflate() or inflate() can be
129 18. Why does gzip give an error on a file I make with compress/deflate?
131 The compress and deflate functions produce data in the zlib format, which
147 You can request that deflate write the gzip format instead of the zlib
180 update the version strings in deflate.c and inftrees.c.
217 deflate stream once to generate an index, and then use that index for
228 understand the deflate format?
242 Yes. inflate() and deflate() will process any amount of data correctly.
243 Each call of inflate() or deflate() is limited to input and output chunks
[all …]
H A DChangeLog7 - Add LIT_MEM define to use more memory for a small deflate speedup
47 - Limit hash table inserts after switch from stored deflate
65 - Fix deflateEnd() to not report an error at start of raw deflate
69 - Fix a bug that can crash deflate on some input when using Z_FIXED
108 - Fix deflate stored bug when pulling last block from window
109 - Permit immediate deflateParams changes before any deflate input
172 - Correct comment in deflate.h
321 - Assure that high-water mark initialization is always applied in deflate
322 - Add assertions to fill_window() in deflate.c to match comments
384 - Correct spelling error in deflate.h [Kohler]
[all …]
H A DREADME6 http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and
59 - For 64-bit Irix, deflate.c must be compiled without any optimization. With
79 The deflate format used by zlib was defined by Phil Katz. The deflate and
H A Dcompress.c53 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH); in compress2()
/freebsd/sys/contrib/zstd/zlibWrapper/examples/
H A Dexample.c245 err = deflate(&c_stream, Z_NO_FLUSH);
251 err = deflate(&c_stream, Z_FINISH);
326 err = deflate(&c_stream, Z_NO_FLUSH);
337 err = deflate(&c_stream, Z_NO_FLUSH);
344 err = deflate(&c_stream, Z_NO_FLUSH);
347 err = deflate(&c_stream, Z_FINISH);
419 err = deflate(&c_stream, Z_FULL_FLUSH);
425 err = deflate(&c_stream, Z_FINISH);
507 err = deflate(&c_stream, Z_FINISH);
H A Dexample_original.c237 err = deflate(&c_stream, Z_NO_FLUSH);
243 err = deflate(&c_stream, Z_FINISH);
318 err = deflate(&c_stream, Z_NO_FLUSH);
329 err = deflate(&c_stream, Z_NO_FLUSH);
336 err = deflate(&c_stream, Z_NO_FLUSH);
339 err = deflate(&c_stream, Z_FINISH);
411 err = deflate(&c_stream, Z_FULL_FLUSH);
417 err = deflate(&c_stream, Z_FINISH);
499 err = deflate(&c_stream, Z_FINISH);
H A Dfitblk_original.c86 ret = deflate(def, flush); in partcompress()
117 ret = deflate(def, flush); in recompress()
H A Dfitblk.c92 ret = deflate(def, flush); in partcompress()
128 ret = deflate(def, flush); in recompress()
/freebsd/sys/modules/zlib/
H A DMakefile11 SRCS+= deflate.c
20 CWARNFLAGS.deflate.c+=-Wno-cast-qual # deflate.c:415
/freebsd/sys/contrib/zlib/doc/
H A Dalgorithm.txt1 1. Compression algorithm (deflate)
17 available memory). A block is terminated when deflate() determines that
34 parameter of deflateInit). So deflate() does not always find the longest
37 deflate() also defers the selection of matches with a lazy evaluation
38 mechanism. After a match of length N has been found, deflate() searches for
46 the current match is long enough, deflate() reduces the search for a longer
48 important than speed, deflate() attempts a complete second search even if
120 At least for deflate's output that generates new trees every several 10's of
H A Drfc1951.txt78 3.2.2. Use of Huffman coding in the "deflate" format ....... 7
141 to compress data into "deflate" format and/or decompress data from
142 "deflate" format.
182 There have been no technical changes to the deflate format since
207 "deflate" format limits distances to 32K bytes and lengths to 258
366 Note that in the "deflate" format, the Huffman codes for the
372 3.2.2. Use of Huffman coding in the "deflate" format
374 The Huffman codes used for each alphabet in the "deflate"
591 As noted above, encoded data blocks in the "deflate" format
775 While it is the intent of this document to define the "deflate"
[all …]
/freebsd/usr.sbin/ppp/
H A Ddeflate.c112 if ((res = deflate(&state->cx, flush)) != Z_OK) { in DeflateOutput()
447 o->data[0] = ((cfg->deflate.out.winsize - 8) << 4) + 8; in DeflateInitOptsOutput()
476 if (cfg->deflate.in.winsize == 0) { in DeflateSetOptsInput()
480 } else if (want != cfg->deflate.in.winsize) { in DeflateSetOptsInput()
481 o->data[0] = ((cfg->deflate.in.winsize - 8) << 4) + 8; in DeflateSetOptsInput()
/freebsd/sys/dev/random/
H A Dunit_test.c107 err = deflate(&c_stream, Z_NO_FLUSH); in block_deflate()
115 err = deflate(&c_stream, Z_FINISH); in block_deflate()
/freebsd/share/examples/ppp/
H A Dppp.conf.span-isp.working72 disable deflate pred1 lqr
73 deny deflate pred1
H A Dppp.conf.sample135 disable pred1 deflate mppe
136 deny pred1 deflate mppe
596 disable deflate pred1
597 deny deflate pred1
603 disable deflate pred1
604 deny deflate pred1
779 disable deflate pred1 mppe
780 deny deflate pred1 mppe
787 disable deflate pred1 mppe
788 deny deflate pred1 mppe
/freebsd/crypto/openssl/crypto/comp/
H A Dc_zlib.c113 # define deflate p_deflate macro
180 err = deflate(&state->ostream, Z_SYNC_FLUSH); in zlib_stateful_compress_block()
488 ret = deflate(zout, 0); in bio_zlib_write()
535 ret = deflate(zout, Z_FINISH); in bio_zlib_flush()
/freebsd/sys/modules/netgraph/
H A DMakefile13 deflate \
/freebsd/lib/libz/
H A DSymbol.map43 deflate;
H A DMakefile29 SRCS+= deflate.c
/freebsd/contrib/libfido2/fuzz/
H A Dwrapped.sym28 deflate
/freebsd/contrib/file/magic/Magdir/
H A Dpdf10 >8 search/512 /Filter/FlateDecode/ (zip deflate encoded)
/freebsd/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzmod.c110 if ((err = deflate(&zs, Z_FINISH)) != Z_STREAM_END) { in z_compress_level()

1234