Home
last modified time | relevance | path

Searched refs:compress (Results 1 – 25 of 269) sorted by relevance

1234567891011

/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_compress.c88 struct compress { struct
114 static void free_data(struct compress *); argument
132 struct compress *compress; in archive_write_add_filter_compress() local
137 compress = calloc(1, sizeof(*compress)); in archive_write_add_filter_compress()
138 if (compress == NULL) in archive_write_add_filter_compress()
146 f->data = compress; in archive_write_add_filter_compress()
154 free_data(compress); in archive_write_add_filter_compress()
166 struct compress *compress = f->data; in archive_compressor_compress_open() local
178 compress->compressed_buffer_size = bs; in archive_compressor_compress_open()
179 compress->compressed = malloc(compress->compressed_buffer_size); in archive_compressor_compress_open()
[all …]
H A Darchive_read_support_filter_compress.c93 struct compress { struct
212 struct compress *compress; in compress_bidder_init() local
219 compress = calloc(1, sizeof(*compress)); in compress_bidder_init()
221 if (compress == NULL || out_block == NULL) { in compress_bidder_init()
223 free(compress); in compress_bidder_init()
230 f->data = compress; in compress_bidder_init()
231 compress->out_block_size = out_block_size; in compress_bidder_init()
232 compress->out_block = out_block; in compress_bidder_init()
241 struct compress *compress = f->data; in compress_filter_init() local
244 compress->initialized = 1; in compress_filter_init()
[all …]
/freebsd/crypto/openssl/test/ssl-tests/
H A D22-compression.cnf5 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 D22-compression.cnf.in22 name => "tlsv1_3-both-compress",
37 name => "tlsv1_3-client-compress",
51 name => "tlsv1_3-server-compress",
65 name => "tlsv1_3-neither-compress",
80 name => "tlsv1_2-both-compress",
96 name => "tlsv1_2-client-compress",
111 name => "tlsv1_2-server-compress",
126 name => "tlsv1_2-neither-compress",
/freebsd/crypto/openssl/crypto/comp/
H A Dc_zstd.c466 } compress; member
534 ctx->compress.state = ZSTD_createCStream(); in bio_zstd_new()
536 ctx->compress.state = ZSTD_createCStream_advanced(zstd_mem_funcs); in bio_zstd_new()
538 if (ctx->compress.state == NULL) in bio_zstd_new()
540 ZSTD_initCStream(ctx->compress.state, ZSTD_CLEVEL_DEFAULT); in bio_zstd_new()
541 ctx->compress.bufsize = ZSTD_CStreamInSize(); in bio_zstd_new()
550 ZSTD_freeCStream(ctx->compress.state); in bio_zstd_new()
566 ZSTD_freeCStream(ctx->compress.state); in bio_zstd_free()
567 OPENSSL_free(ctx->compress.outbuf.dst); in bio_zstd_free()
653 if (ctx->compress.outbuf.dst == NULL) { in bio_zstd_write()
[all …]
/freebsd/usr.bin/compress/doc/
H A DREADME2 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
67 compress 2.0. To generate output that is compatible with compress
[all …]
H A DNOTES16 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 …]
/freebsd/sys/contrib/openzfs/lib/libzstd/
H A DMakefile.am17 module/zstd/lib/compress/fse_compress.c \
18 module/zstd/lib/compress/hist.c \
19 module/zstd/lib/compress/huf_compress.c \
20 module/zstd/lib/compress/zstd_compress_literals.c \
21 module/zstd/lib/compress/zstd_compress_sequences.c \
22 module/zstd/lib/compress/zstd_compress_superblock.c \
23 module/zstd/lib/compress/zstd_compress.c \
24 module/zstd/lib/compress/zstd_double_fast.c \
25 module/zstd/lib/compress/zstd_fast.c \
26 module/zstd/lib/compress/zstd_lazy.c \
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/bclone/
H A Dbclone_diffprops_all.ksh32 log_must zfs inherit compress $TESTSRCFS
36 log_must zfs inherit compress $TESTDSTFS
48 log_must zfs set compress=off $TESTSRCFS
52 log_must zfs set compress=lz4 $TESTDSTFS
61 log_must zfs set compress=zstd $TESTSRCFS
65 log_must zfs set compress=off $TESTDSTFS
74 log_must zfs set compress=gzip $TESTSRCFS
78 log_must zfs set compress=lzjb $TESTDSTFS
H A Dbclone_crossfs_embedded.ksh27 log_must zfs inherit compress $TESTSRCFS
28 log_must zfs inherit compress $TESTDSTFS
36 log_must zfs set compress=zle $TESTSRCFS
37 log_must zfs set compress=zle $TESTDSTFS
H A Dbclone_crossfs_data.ksh27 log_must zfs inherit compress $TESTSRCFS
28 log_must zfs inherit compress $TESTDSTFS
35 log_must zfs set compress=off $TESTSRCFS
36 log_must zfs set compress=off $TESTDSTFS
H A Dbclone_crossfs_corner_cases_limited.ksh27 log_must zfs inherit compress $TESTSRCFS
28 log_must zfs inherit compress $TESTDSTFS
37 log_must zfs set compress=off $TESTSRCFS
39 log_must zfs set compress=off $TESTDSTFS
H A Dbclone_diffprops_compress.ksh32 log_must zfs inherit compress $TESTSRCFS
33 log_must zfs inherit compress $TESTDSTFS
47 log_must zfs set compress=$srcprop $TESTSRCFS
48 log_must zfs set compress=$dstprop $TESTDSTFS
H A Dbclone_crossfs_corner_cases.ksh27 log_must zfs inherit compress $TESTSRCFS
28 log_must zfs inherit compress $TESTDSTFS
37 log_must zfs set compress=off $TESTSRCFS
39 log_must zfs set compress=off $TESTDSTFS
H A Dbclone_diffprops_copies.ksh33 log_must zfs inherit compress $TESTSRCFS
35 log_must zfs inherit compress $TESTDSTFS
44 log_must zfs set compress=off $TESTSRCFS
45 log_must zfs set compress=off $TESTDSTFS
H A Dbclone_diffprops_checksum.ksh33 log_must zfs inherit compress $TESTSRCFS
35 log_must zfs inherit compress $TESTDSTFS
44 log_must zfs set compress=off $TESTSRCFS
45 log_must zfs set compress=off $TESTDSTFS
H A Dbclone_diffprops_recordsize.ksh33 log_must zfs inherit compress $TESTSRCFS
35 log_must zfs inherit compress $TESTDSTFS
44 log_must zfs set compress=off $TESTSRCFS
45 log_must zfs set compress=off $TESTDSTFS
H A Dbclone_prop_sync.ksh29 log_must zfs inherit compress $TESTSRCFS
30 log_must zfs inherit compress $TESTDSTFS
38 log_must zfs set compress=zle $TESTSRCFS
39 log_must zfs set compress=zle $TESTDSTFS
/freebsd/tests/sys/cddl/zfs/tests/compression/
H A Dcompression_test.sh36 . $(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/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend-c_stream_size_estimate.ksh38 typeset compress
56 for compress in "${compress_prop_vals[@]}"; do
59 log_must zfs create -o compress=$compress $send_ds
60 log_must zfs create -V 1g -o compress=$compress $send_vol
H A Dsend-c_recv_lz4_disabled.ksh53 for compress in "${compress_prop_vals[@]}"; do
57 log_must zfs create -o compress=$compress $send_ds
/freebsd/usr.bin/compress/
H A DMakefile3 PROG= compress
4 SRCS= compress.c zopen.c
5 LINKS= ${BINDIR}/compress ${BINDIR}/uncompress
6 MLINKS= compress.1 uncompress.1
/freebsd/sys/contrib/openzfs/include/sys/
H A Dzio.h138 #define BOOTFS_COMPRESS_VALID(compress) \ argument
139 ((compress) == ZIO_COMPRESS_LZJB || \
140 (compress) == ZIO_COMPRESS_LZ4 || \
141 (compress) == ZIO_COMPRESS_GZIP_1 || \
142 (compress) == ZIO_COMPRESS_GZIP_2 || \
143 (compress) == ZIO_COMPRESS_GZIP_3 || \
144 (compress) == ZIO_COMPRESS_GZIP_4 || \
145 (compress) == ZIO_COMPRESS_GZIP_5 || \
146 (compress) == ZIO_COMPRESS_GZIP_6 || \
147 (compress) == ZIO_COMPRESS_GZIP_7 || \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCompression.cpp46 void compression::compress(Params P, ArrayRef<uint8_t> Input, in compress() function in compression
50 zlib::compress(Input, Output, P.level); in compress()
53 zstd::compress(Input, Output, P.level, P.zstdEnableLdm); in compress()
107 void zlib::compress(ArrayRef<uint8_t> Input, in compress() function in zlib
147 void zlib::compress(ArrayRef<uint8_t> Input, in compress() function in zlib
168 void zstd::compress(ArrayRef<uint8_t> Input, in compress() function in zstd
230 void zstd::compress(ArrayRef<uint8_t> Input, in compress() function in zstd
/freebsd/crypto/openssl/util/
H A Dfips-checksums.sh13 | $HERE/lang-compress.pl 'C' \
20 | $HERE/lang-compress.pl 'perl' \
26 | $HERE/lang-compress.pl 'S' \

1234567891011