Lines Matching full:compress
9 - `zstd-compress` : version of CLI which can only compress into zstd format
34 - __HAVE_ZLIB__ : `zstd` can compress and decompress files in `.gz` format.
44 - __HAVE_LZMA__ : `zstd` can compress and decompress files in `.xz` and `.lzma` formats.
54 - __HAVE_LZ4__ : `zstd` can compress and decompress files in `.lz4` formats.
78 The resulting binary will only be able to compress files.
80 A corresponding `Makefile` target using this ability is `zstd-compress`.
97 - `zstdmt` : compress using all cores available on local system.
118 will rely more and more on previously decoded content to compress the rest of the file.
123 2. Compress with the dictionary: `zstd FILE -D dictionaryName`
152 -f : overwrite output without prompting, also (de)compress links
179 --rsyncable : compress using a rsync-friendly method (-B sets block size)
180 --exclude-compressed: only compress files that are not already compressed
185 --[no-]compress-literals : force (un)compressed literals
186 --format=zstd : compress files to the .zst format (default)
187 --format=gzip : compress files to the .gz format
188 --format=xz : compress files to the .xz format
189 --format=lzma : compress files to the .lzma format
190 --format=lz4 : compress files to the .lz4 format