Home
last modified time | relevance | path

Searched refs:compression (Results 1 – 25 of 368) sorted by relevance

12345678910>>...15

/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_002_pos.ksh74 mountpoint none compression lz4
75 compression on compression off
76 compression lzjb acltype off
88 compression gzip compression gzip-$((RANDOM%9 + 1))
89 compression zstd compression zstd-$((RANDOM%9 + 1))
90 compression zstd-fast copies $((RANDOM%3 + 1))
91 compression zstd-fast-$((RANDOM%9 + 1)) xattr sa
103 compression on compression off
104 compression lzjb aclmode discard
116 compression gzip compression gzip-$((RANDOM%9 + 1))
[all …]
H A Dhistory_003_pos.ksh71 zfs set compression=off $spool/$sfs
72 zfs set compression=on $spool/$sfs
73 zfs set compression=off $spool/$sfs
74 zfs set compression=on $spool/$sfs
75 zfs set compression=off $spool/$sfs
/freebsd/crypto/openssl/doc/man3/
H A DSSL_COMP_add_compression_method.pod7 - handle SSL/TLS integrated compression methods
26 SSL_COMP_add_compression_method() adds the compression method B<cm> with
27 the identifier B<id> to the list of available compression methods. This
32 compression methods or NULL on error.
34 SSL_COMP_get0_name() returns the name of the compression method B<comp>.
36 SSL_COMP_get_id() returns the id of the compression method B<comp>.
39 maintain the internal table of compression methods.
43 The TLS standard (or SSLv3) allows the integration of compression methods
44 into the communication. The TLS RFC does however not specify compression
46 way to integrate compression with unknown peers. It is therefore currently not
[all …]
H A DCOMP_CTX_new.pod53 These functions provide compression support for OpenSSL. Compression is used within
54 the OpenSSL library to support TLS record and certificate compression.
74 will be available even if their corresponding compression algorithm is not configured
81 COMP_zlib() returns a B<COMP_METHOD> for stream-based ZLIB compression.
85 COMP_zlib_oneshot() returns a B<COMP_METHOD> for one-shot ZLIB compression.
89 COMP_brotli() returns a B<COMP_METHOD> for stream-based Brotli compression.
93 COMP_brotli_oneshot() returns a B<COMP_METHOD> for one-shot Brotli compression.
97 COMP_zstd() returns a B<COMP_METHOD> for stream-based Zstandard compression.
101 COMP_zstd_oneshot() returns a B<COMP_METHOD> for one-shot Zstandard compression.
114 compression and expansion.
[all …]
H A DSSL_SESSION_get_compress_id.pod6 - get details about the compression associated with a session
16 If compression has been negotiated for an ssl session then
17 SSL_SESSION_get_compress_id() will return the id for the compression method or
18 0 otherwise. The only built-in supported compression method is zlib which has an
23 SSL_SESSION_get_compress_id() returns the id of the compression method or 0 if
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCompression.cpp28 using namespace llvm::compression;
30 const char *compression::getReasonIfUnsupported(compression::Format F) { in getReasonIfUnsupported()
32 case compression::Format::Zlib: in getReasonIfUnsupported()
37 case compression::Format::Zstd: in getReasonIfUnsupported()
46 void compression::compress(Params P, ArrayRef<uint8_t> Input, in compress()
49 case compression::Format::Zlib: in compress()
52 case compression::Format::Zstd: in compress()
58 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress()
61 case compression::Format::Zlib: in decompress()
63 case compression::Format::Zstd: in decompress()
[all …]
/freebsd/sys/contrib/zstd/programs/
H A Dzstd.1.md18 `zstd` is a fast lossless compression algorithm and data compression tool,
21 `zstd` offers highly configurable compression speed,
23 and strong modes nearing lzma compression ratios.
92 Benchmark file(s) using compression level #
104 `#` compression level \[1-19] (default: 3)
106 unlocks high compression levels 20+ (maximum 22), using a lot more memory.
109 switch to ultra-fast compression levels.
111 The higher the value, the faster the compression speed,
112 at the cost of some compression ratio.
113 This setting overwrites compression level if one was set previously.
[all …]
H A DREADME.md72 - __ZSTD_NOCOMPRESS__ : `zstd` cli will be compiled without support for compression.
111 which can be loaded before compression and decompression.
113 Using a dictionary, the compression ratio achievable on small data improves dramatically.
114 These compression gains are achieved while simultaneously providing faster compression and decompre…
117 Dictionary gains are mostly effective in the first few KB. Then, the compression algorithm
128 CLI includes in-memory compression benchmark module for zstd.
134 The benchmark measures ratio, compressed size, compression and decompression speed.
135 One can select compression levels starting from `-b` and ending with `-e`.
148 -# : # compression level (1-19, default: 3)
150 -D DICT: use DICT as Dictionary for compression or decompression
[all …]
/freebsd/contrib/libarchive/tar/
H A Dbsdtar.c142 int compression, compression2; in main() local
161 compression = compression2 = '\0'; in main()
408 if (compression != '\0') in main()
411 compression); in main()
412 compression = opt; in main()
459 if (compression != '\0') in main()
462 compression); in main()
463 compression = opt; in main()
467 if (compression != '\0') in main()
470 compression); in main()
[all …]
/freebsd/sys/modules/qat/qat_api/
H A DMakefile8 SRCS+= common/compression/dc_datapath.c
9 SRCS+= common/compression/dc_header_footer.c
10 SRCS+= common/compression/dc_session.c
11 SRCS+= common/compression/dc_stats.c
12 SRCS+= common/compression/dc_buffers.c
13 SRCS+= common/compression/dc_dp.c
14 SRCS+= common/compression/icp_sal_dc_err.c
15 SRCS+= common/compression/dc_chain.c
16 SRCS+= common/compression/dc_ns_datapath.c
17 SRCS+= common/compression/dc_ns_header_footer.c
[all …]
/freebsd/sys/contrib/zstd/examples/
H A DREADME.md4 - [Simple compression](simple_compression.c) :
10 Only compatible with simple compression.
14 - [Multiple simple compression](multiple_simple_compression.c) :
24 - [Streaming compression](streaming_compression.c) :
28 - [Multiple Streaming compression](multiple_streaming_compression.c) :
35 Compatible with both simple and streaming compression.
39 - [Dictionary compression](dictionary_compression.c) :
/freebsd/sys/contrib/zstd/
H A DCHANGELOG7 perf: rebalanced compression levels, to better match the intended speed/level curve, by @senhuang42
12 perf: faster mid-level compression speed in presence of highly repetitive patterns, by @senhuang42
13 perf: minor compression ratio improvements for small data at high levels, by @cyan4973
15 perf: faster compression speed on incompressible data, by @bindhvo
40 perf: Significant speed improvements for middle compression levels (#2494, @senhuang42 @terrelln)
41 perf: Block splitter to improve compression ratio, enabled by default for high compression levels (…
43 perf: Reduced stack usage during compression and decompression entropy stage (#2522 #2524, @terrell…
48 bug: Ensure `ZSTD_estimateCCtxSize*() `monotonically increases with compression level (#2538, @senh…
51 bug: Fix superblock compression divide by zero bug (#2592, @senhuang42)
110 perf: stronger --long mode at high compression levels, by @senhuang42
[all …]
H A DREADME.md3 __Zstandard__, or `zstd` as short version, is a fast lossless compression algorithm,
4 targeting real-time compression scenarios at zlib-level and better compression ratios.
34 For reference, several fast compression algorithms were tested and compared
39 on the [Silesia compression corpus].
42 [Silesia compression corpus]: http://sun.aei.polsl.pl/~sdeor/index.php?page=silesia
62 The negative compression levels, specified with `--fast=#`,
63 offer faster compression and decompression speed
64 at the cost of compression ratio (compared to level 1).
66 Zstd can also offer stronger compression ratios at the cost of compression speed.
69 a property shared by most LZ compression algorithms, such as [zlib] or lzma.
[all …]
/freebsd/tests/sys/cddl/zfs/tests/history/
H A Dhistory_003_pos.ksh65 $ZFS set compression=off $TESTPOOL/$TESTFS
66 $ZFS set compression=on $TESTPOOL/$TESTFS
67 $ZFS set compression=off $TESTPOOL/$TESTFS
68 $ZFS set compression=on $TESTPOOL/$TESTFS
69 $ZFS set compression=off $TESTPOOL/$TESTFS
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create_verbose.ksh143 expect=([compression]=on)
144 dry_create_parseable expect -o compression=on "$TESTPOOL/$TESTFS1"
147 expect=([compression]=on)
148 dry_create_parseable expect -p -o compression=on "$TESTPOOL/$TESTFS1"
149 expect=([compression]=on)
150 dry_create_parseable expect -p -o compression=on "$TESTPOOL/$TESTFS1/$TESTVOL"
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_lrzip.c45 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression;
89 "Using external lrzip program for lrzip compression"); in archive_write_add_filter_lrzip()
99 if (strcmp(key, "compression") == 0) { in archive_write_lrzip_options()
103 data->compression = bzip2; in archive_write_lrzip_options()
105 data->compression = gzip; in archive_write_lrzip_options()
107 data->compression = lzo; in archive_write_lrzip_options()
109 data->compression = none; in archive_write_lrzip_options()
111 data->compression = zpaq; in archive_write_lrzip_options()
115 } else if (strcmp(key, "compression-level") == 0) { in archive_write_lrzip_options()
138 /* Specify compression typ in archive_write_lrzip_open()
47 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression; global() member
[all...]
/freebsd/contrib/file/magic/Magdir/
H A Dgentoo76 # determine the compression used by looking at the second member name
78 >>>>>&0 string gz\0 using gzip compression
79 >>>>>&0 string bz2\0 using bzip2 compression
80 >>>>>&0 string lz\0 using lzip compression
81 >>>>>&0 string lz4\0 using lz4 compression
82 >>>>>&0 string lzo\0 using lzo compression
83 >>>>>&0 string xz\0 using xz compression
84 >>>>>&0 string zst\0 using zstd compression
H A Ddwarfs16 >&0 leshort =1 \b, LZMA compression
17 >&0 leshort =2 \b, ZSTD compression
18 >&0 leshort =3 \b, LZ4 compression
19 >&0 leshort =4 \b, LZ4HC compression
20 >&0 leshort =5 \b, BROTLI compression
/freebsd/sys/contrib/zstd/zlibWrapper/
H A DREADME.md34 #### Enabling zstd compression within your project
37 Your project should work as before with zlib. There are two options to enable zstd compression:
81 One can select compression levels starting from `-b` and ending with `-e`. The `-i` parameter selec…
86 #### Improving speed of streaming compression
88 During streaming compression the compressor never knows how big is data to compress.
89compression can be improved by providing size of source data to the compressor. By default streami…
90 …dgedSrcSize()` function that allows to change a pledged source size for a given compression stream.
91 The function will change zstd compression parameters what may improve compression speed and/or rati…
98 The ordinary zlib compression of two files/streams allocates two contexts:
102 The speed of compression can be improved with reusing a single context with following steps:
[all …]
/freebsd/contrib/libarchive/
H A DREADME.md91 * 7-Zip archives (including archives that use zstandard compression)
102 * gzip compression
103 * bzip2 compression
104 * compress/LZW compression
105 * lzma, lzip, and xz compression
106 * lz4 compression
107 * lzop compression
108 * zstandard compression
128 * 7-Zip archives (including archives that use zstandard compression)
136 * gzip compression
[all …]
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_read_truncated_filter.c35 test_truncation(const char *compression, in test_truncation() argument
68 compression); in test_truncation()
83 snprintf(path, sizeof(path), "%s%d", compression, i); in test_truncation()
121 compression); in test_truncation()
125 snprintf(path, sizeof(path), "%s%d", compression, i); in test_truncation()
129 compression); in test_truncation()
/freebsd/sys/cddl/boot/zfs/
H A DREADME7 gzip.c compression support
8 lz4.c compression support
9 lzjb.c compression support
11 zfssubr.c checksum, compression and raidz support
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/pool_checkpoint/
H A Dpool_checkpoint.kshlib210 log_must zfs create -o compression=lz4 -o recordsize=8k $FS0
211 log_must zfs create -o compression=lz4 -o recordsize=8k $FS1
219 log_must zfs create -o compression=lz4 -o recordsize=8k $NESTEDFS0
220 log_must zfs create -o compression=lz4 -o recordsize=8k $NESTEDFS1
275 log_must zfs create -o compression=lz4 -o recordsize=8k $FS2
284 log_must zfs create -o compression=lz4 -o recordsize=8k $NESTEDFS2
324 log_must zfs create -o compression=lz4 -o recordsize=8k $NESTEDFS2
/freebsd/contrib/file/
H A Dconfigure.ac39 [AS_HELP_STRING([--disable-zlib], [disable zlib compression support @<:@default=auto@:>@])])
44 [AS_HELP_STRING([--disable-bzlib], [disable bz2lib compression support @<:@default=auto@:>@])])
49 [AS_HELP_STRING([--disable-xzlib], [disable liblzma/xz compression support @<:@default=auto@:>@])])
54 [AS_HELP_STRING([--disable-zstdlib], [disable zstdlib compression support @<:@default=auto@:>@])])
59 [AS_HELP_STRING([--disable-lzlib], [disable liblz (lzip) compression support @<:@default=auto@:>@])…
64 [AS_HELP_STRING([--disable-lrziplib], [disable liblrzip (lrzip) compression support @<:@default=aut…
246 AC_DEFINE([ZLIBSUPPORT], 1, [Enable zlib compression support])
254 AC_DEFINE([BZLIBSUPPORT], 1, [Enable bzlib compression support])
262 AC_DEFINE([XZLIBSUPPORT], 1, [Enable xzlib compression support])
270 AC_DEFINE([ZSTDLIBSUPPORT], 1, [Enable zstdlib compression support])
[all …]
/freebsd/tests/sys/cddl/zfs/tests/rootpool/
H A Drootpool_007_neg.ksh57 log_must $ZFS set compression=$orig_compress $rootfs
65 typeset orig_compress=$(get_prop compression $rootfs)
75 log_mustnot $ZFS set compression=${gtype[i]} $rootfs

12345678910>>...15