/freebsd/sys/opencrypto/ |
H A D | cryptodeflate.c | 48 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 D | README.md | 92 …deflate()` 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 D | example.c | 183 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 D | FAQ | 32 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 D | ChangeLog | 7 - 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 D | README | 6 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 D | compress.c | 53 err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH); in compress2()
|
/freebsd/sys/contrib/zstd/zlibWrapper/examples/ |
H A D | example.c | 245 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 D | example_original.c | 237 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 D | fitblk_original.c | 86 ret = deflate(def, flush); in partcompress() 117 ret = deflate(def, flush); in recompress()
|
H A D | fitblk.c | 92 ret = deflate(def, flush); in partcompress() 128 ret = deflate(def, flush); in recompress()
|
/freebsd/sys/modules/zlib/ |
H A D | Makefile | 11 SRCS+= deflate.c 20 CWARNFLAGS.deflate.c+=-Wno-cast-qual # deflate.c:415
|
/freebsd/sys/contrib/zlib/doc/ |
H A D | algorithm.txt | 1 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 D | rfc1951.txt | 78 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 D | deflate.c | 112 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 D | unit_test.c | 107 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 D | ppp.conf.span-isp.working | 72 disable deflate pred1 lqr 73 deny deflate pred1
|
H A D | ppp.conf.sample | 135 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 D | c_zlib.c | 113 # 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 D | Makefile | 13 deflate \
|
/freebsd/lib/libz/ |
H A D | Symbol.map | 43 deflate;
|
H A D | Makefile | 29 SRCS+= deflate.c
|
/freebsd/contrib/libfido2/fuzz/ |
H A D | wrapped.sym | 28 deflate
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | pdf | 10 >8 search/512 /Filter/FlateDecode/ (zip deflate encoded)
|
/freebsd/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
H A D | zmod.c | 110 if ((err = deflate(&zs, Z_FINISH)) != Z_STREAM_END) { in z_compress_level()
|