/freebsd/crypto/openssl/test/ssl-tests/ |
H A D | 22-compression.cnf | 5 test-0 = 0-tlsv1_3-both-compress 6 test-1 = 1-tlsv1_3-client-compress 7 test-2 = 2-tlsv1_3-server-compress 8 test-3 = 3-tlsv1_3-neither-compress 9 test-4 = 4-tlsv1_2-both-compress 10 test-5 = 5-tlsv1_2-client-compress 11 test-6 = 6-tlsv1_2-server-compress 12 test-7 = 7-tlsv1_2-neither-compress 15 [0-tlsv1_3-both-compress] 16 ssl_conf = 0-tlsv1_3-both-compress-ssl [all …]
|
H A D | 22-compression.cnf.in | 22 name => "tlsv1_3-both-compress", 35 name => "tlsv1_3-client-compress", 47 name => "tlsv1_3-server-compress", 59 name => "tlsv1_3-neither-compress", 72 name => "tlsv1_2-both-compress", 86 name => "tlsv1_2-client-compress", 99 name => "tlsv1_2-server-compress", 112 name => "tlsv1_2-neither-compress",
|
/freebsd/usr.bin/compress/doc/ |
H A D | README | 1 Compress version 4.0 improvements over 3.0: 2 o compress() speedup (10-50%) by changing division hash to xor 6 o Removed 'Big+Fast' compress code (FBITS) because of compress speedup 24 The following preprocessor symbols control the compilation of "compress.c": 57 a version of compress on a smaller machine cannot be decompressed! Use the 61 The output of compress 4.0 is fully compatible with that of compress 3.0. 62 In other words, the output of compress 4.0 may be fed into uncompress 3.0 or 63 the output of compress 3.0 may be fed into uncompress 4.0. 65 The output of compress 4.0 not compatible with that of 66 compress 2.0. However, compress 4.0 still accepts the output of [all …]
|
H A D | NOTES | 16 these very words are being modulated by 'compress', 20 LZW method is #4,558,302. Yet despite any similarities between 'compress' 21 and LZW (the public-domain 'compress' code was designed and given to the 26 or, just as bad, not broad enough. ('compress' does things not mentioned 30 the same as that of 'compress'. 58 Subject: Re: Looking for C source for RSA (actually 'compress' patents) 76 several conversations from a Unisys (nee sperry) lawyer re 'compress'. 79 communication only) software versions of 'compress' slide 81 and other commercial wrappers for 'compress'. yet they are 90 after discovering some sort of "compress" button on some [all …]
|
H A D | revision.log | 3 * $Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $ 34 * of SVR2 'pack'. Streamline block-compress table clear logic. Increase 60 * Implemented "-B" block compress. Implemented REVERSE sorting of tab_next. 79 * Will only compress regular files (no directories), added a magic number 88 * filenames to compress. Flags may be clustered (-Ddvb12) or separated 97 * Sped up algorithm significantly by sorting the compress chain. 117 "$Header: compress.c,v 4.0 85/07/30 12:50:00 joe Release $";
|
/freebsd/sys/contrib/openzfs/lib/libzstd/ |
H A D | Makefile.am | 16 module/zstd/lib/compress/fse_compress.c \ 17 module/zstd/lib/compress/hist.c \ 18 module/zstd/lib/compress/huf_compress.c \ 19 module/zstd/lib/compress/zstd_compress_literals.c \ 20 module/zstd/lib/compress/zstd_compress_sequences.c \ 21 module/zstd/lib/compress/zstd_compress_superblock.c \ 22 module/zstd/lib/compress/zstd_compress.c \ 23 module/zstd/lib/compress/zstd_double_fast.c \ 24 module/zstd/lib/compress/zstd_fast.c \ 25 module/zstd/lib/compress/zstd_lazy.c \ [all …]
|
/freebsd/sys/contrib/openzfs/module/zstd/ |
H A D | zstd-in.c | 52 #include "compress/fse_compress.c" 53 #include "compress/hist.c" 54 #include "compress/huf_compress.c" 55 #include "compress/zstd_compress_literals.c" 56 #include "compress/zstd_compress_sequences.c" 57 #include "compress/zstd_compress_superblock.c" 58 #include "compress/zstd_compress.c" 59 #include "compress/zstd_double_fast.c" 60 #include "compress/zstd_fast.c" 61 #include "compress/zstd_lazy.c" [all …]
|
/freebsd/usr.bin/compress/ |
H A D | compress.1 | 36 .Nm compress , 38 .Nd compress and expand data 124 .Nm compress , 185 .Ex -std compress uncompress 188 .Nm compress 189 utility exits 2 if attempting to compress a file would not reduce its size 203 $ compress -b 10 test_file 208 Try to compress the file and show compression percentage: 210 $ compress -v test_file 216 $ compress -f -v test_file [all …]
|
H A D | Makefile | 3 PROG= compress 4 SRCS= compress.c zopen.c 5 LINKS= ${BINDIR}/compress ${BINDIR}/uncompress 6 MLINKS= compress.1 uncompress.1
|
H A D | compress.c | 47 static void compress(const char *, const char *, int); 60 enum {COMPRESS, DECOMPRESS} style; in main() enumerator 72 else if (!strcmp(p, "compress")) in main() 73 style = COMPRESS; in main() 102 usage(style == COMPRESS); in main() 109 case COMPRESS: in main() 110 (void)compress("/dev/stdin", "/dev/stdout", bits); in main() 119 if (cat == 1 && style == COMPRESS && argc > 1) in main() 124 case COMPRESS: in main() 126 compress("/dev/stdin", "/dev/stdout", bits); in main() [all …]
|
/freebsd/sys/contrib/openzfs/module/icp/algs/sha2/ |
H A D | sha2_generic.c | 73 #define COMPRESS(i, j, K) \ macro 104 COMPRESS(i, 0, SHA256_K); in sha256_generic() 105 COMPRESS(i, 1, SHA256_K); in sha256_generic() 106 COMPRESS(i, 2, SHA256_K); in sha256_generic() 107 COMPRESS(i, 3, SHA256_K); in sha256_generic() 108 COMPRESS(i, 4, SHA256_K); in sha256_generic() 109 COMPRESS(i, 5, SHA256_K); in sha256_generic() 110 COMPRESS(i, 6, SHA256_K); in sha256_generic() 111 COMPRESS(i, 7, SHA256_K); in sha256_generic() 112 COMPRESS(i, 8, SHA256_K); in sha256_generic() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/ |
H A D | receive-o-x_props_aliases.ksh | 69 log_mustnot eval "zfs recv $dest -o compress < $streamfile_full" 70 log_mustnot eval "zfs recv $dest -x compress=off < $streamfile_full" 71 log_mustnot eval "zfs recv $dest -o compress=off -x compress < $streamfile_full" 72 log_mustnot eval "zfs recv $dest -o compress=off -o compress=on < $streamfile_full" 73 log_mustnot eval "zfs recv $dest -x compress -x compress < $streamfile_full" 94 log_must eval "zfs recv -o compress=on -o '$userprop:dest'='$userval' "\ 121 " -o dnsize=2k -x compress $dest < $streamfile_incr" 160 log_must eval "zfs recv -F -x copies -x compress $dest < $streamfile_incr" 181 log_must eval "zfs set compress=on $dest" 182 log_must eval "zfs set compress=lzjb $destsub" [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/bclone/ |
H A D | bclone_diffprops_all.ksh | 39 log_must zfs set compress=off $TESTSRCFS 43 log_must zfs set compress=lz4 $TESTDSTFS 52 log_must zfs set compress=zstd $TESTSRCFS 56 log_must zfs set compress=off $TESTDSTFS 65 log_must zfs set compress=gzip $TESTSRCFS 69 log_must zfs set compress=lzjb $TESTDSTFS 78 log_must zfs inherit compress $TESTSRCFS 82 log_must zfs inherit compress $TESTDSTFS
|
/freebsd/usr.bin/gzip/ |
H A D | gzexe | 82 echo "$prog: cannot compress non-existing file $1" 87 echo "$prog: cannot compress non-regular file $1" 93 echo "$prog: cannot compress $1, I depend on it" 98 echo "$prog: cannot compress $1, it is not executable" 103 echo "$prog: cannot compress $1, it has an s bit set" 108 # Compress a file 109 compress () { 136 echo "$prog: cannot compress $1" 172 elif ! check "$1" || ! compress "$1"; then
|
/freebsd/contrib/libarchive/tar/test/ |
H A D | test_option_a.c | 22 /* Check that the archive file has a compress signature. */ in DEFINE_TEST() 33 /* Check that the archive file has a compress signature. */ in DEFINE_TEST() 44 /* Check that the archive file has a compress signature. */ in DEFINE_TEST() 55 /* Check that the archive file has a compress signature. */ in DEFINE_TEST() 67 /* Check that the archive file has a compress signature. */ in DEFINE_TEST() 80 /* Check that the archive file has a compress signature. */ in DEFINE_TEST() 89 systemf("%s --auto-compress -cf test7.tar.Z f 2>test7.err", in DEFINE_TEST() 92 /* Check that the archive file has a compress signature. */ in DEFINE_TEST()
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | README.md | 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 [all …]
|
/freebsd/sys/contrib/openzfs/module/zstd/include/ |
H A D | zstd_compat_wrapper.h | 100 /* lib/compress/fse_compress.o: */ 118 /* lib/compress/hist.o: */ 126 /* lib/compress/huf_compress.o: */ 146 /* lib/compress/zstd_compress_literals.o: */ 151 /* lib/compress/zstd_compress_sequences.o: */ 158 /* lib/compress/zstd_compress_superblock.o: */ 161 /* lib/compress/zstd_compress.o: */ 262 /* lib/compress/zstd_double_fast.o: */ 268 /* lib/compress/zstd_fast.o: */ 274 /* lib/compress/zstd_lazy.o: */ [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
H A D | send-c_stream_size_estimate.ksh | 37 typeset compress 55 for compress in "${compress_prop_vals[@]}"; do 58 log_must zfs create -o compress=$compress $send_ds 59 log_must zfs create -V 1g -o compress=$compress $send_vol
|
/freebsd/sys/contrib/zstd/lib/ |
H A D | BUCK | 8 ':compress', 15 name='compress', 19 ('compress', 'zstd*.h'), 21 srcs=glob(['compress/zstd*.c', 'compress/hist.c']), 115 'compress/fse_compress.c', 116 'compress/huf_compress.c',
|
/freebsd/tests/sys/cddl/zfs/tests/compression/ |
H A D | compression_test.sh | 36 . $(atf_get_srcdir)/compress.cfg 45 . $(atf_get_srcdir)/compress.cfg 60 . $(atf_get_srcdir)/compress.cfg 69 . $(atf_get_srcdir)/compress.cfg 87 . $(atf_get_srcdir)/compress.cfg 96 . $(atf_get_srcdir)/compress.cfg
|
/freebsd/sys/contrib/zstd/examples/ |
H A D | README.md | 5 Compress a single file. 15 Compress multiple files (in simple mode) in a single command line. 25 Compress a single file. 29 Compress multiple files (in streaming mode) in a single command line. 40 Compress multiple files using the same dictionary.
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | qcom,q6asm.txt | 39 Usage: Required for Compress offload dais 46 - is-compress-dai: 47 Usage: Required for Compress offload dais 49 Definition: present for Compress offload dais 67 is-compress-dai;
|
/freebsd/contrib/libarchive/cpio/ |
H A D | bsdcpio.1 | 151 Compress the file with xz-compatible compression before writing it. 168 Compress the resulting archive with 173 Compress the archive with lz4-compatible compression before writing it. 178 Compress the archive with zstd-compatible compression before writing it. 183 Compress the file with lzma-compatible compression before writing it. 188 Compress the resulting archive with 281 Compress the archive with bzip2-compatible compression before writing it. 286 Compress the archive with compress-compatible compression before writing it. 291 Compress the archive with gzip-compatible compression before writing it.
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | zio.h | 124 * The meaning of "compress = on" selected by the compression features enabled 132 #define BOOTFS_COMPRESS_VALID(compress) \ argument 133 ((compress) == ZIO_COMPRESS_LZJB || \ 134 (compress) == ZIO_COMPRESS_LZ4 || \ 135 (compress) == ZIO_COMPRESS_GZIP_1 || \ 136 (compress) == ZIO_COMPRESS_GZIP_2 || \ 137 (compress) == ZIO_COMPRESS_GZIP_3 || \ 138 (compress) == ZIO_COMPRESS_GZIP_4 || \ 139 (compress) == ZIO_COMPRESS_GZIP_5 || \ 140 (compress) == ZIO_COMPRESS_GZIP_6 || \ [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | IntEqClasses.h | 16 /// Once the classes are built, compress() will number them 0 .. M-1 and prevent 66 /// compress - Compress equivalence classes by numbering them 0 .. M. 68 void compress(); 70 /// getNumClasses - Return the number of equivalence classes after compress() 77 assert(NumClasses && "operator[] called before compress()");
|