| /freebsd/crypto/openssl/test/ssl-tests/ |
| H A D | 32-compressed-certificate.cnf | 5 test-0 = 0-no-compressed-certificates 6 test-1 = 1-server-compressed-certificates 7 test-2 = 2-client-compressed-certificates 8 test-3 = 3-both-compressed-certificates 9 test-4 = 4-no-compressed-certificates-mtls 10 test-5 = 5-server-compressed-certificates-mtls 11 test-6 = 6-client-compressed-certificates-mtls 12 test-7 = 7-both-compressed-certificates-mtls 15 [0-no-compressed-certificates] 16 ssl_conf = 0-no-compressed-certificates-ssl [all …]
|
| H A D | 32-compressed-certificate.cnf.in | 20 name => "no-compressed-certificates", 34 name => "server-compressed-certificates", 48 name => "client-compressed-certificates", 62 name => "both-compressed-certificates", 76 name => "no-compressed-certificates-mtls", 94 name => "server-compressed-certificates-mtls", 112 name => "client-compressed-certificates-mtls", 130 name => "both-compressed-certificates-mtls",
|
| /freebsd/crypto/openssl/demos/cms/ |
| H A D | comp.txt | 3 Some Text To be Compressed 4 Some Text To be Compressed 5 Some Text To be Compressed 6 Some Text To be Compressed 7 Some Text To be Compressed 8 Some Text To be Compressed 9 Some Text To be Compressed 10 Some Text To be Compressed 11 Some Text To be Compressed 12 Some Text To be Compressed [all …]
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | compress | 7 # Formats for various forms of compressed data 16 >2 byte&0x80 >0 block compressed 36 # to display gzip compressed (strength=100=2*50) before other (strength=50)? 61 >>10 default x gzip compressed data 68 #!:mime application/x-compressed-tar 71 #!:mime image/svg+xml-compressed 84 >3 byte&0x18 >0 gzip compressed data 87 #!:mime application/x-compressed-tar 88 #!:mime application/x-abiword-compressed 89 #!:mime image/image/svg+xml-compressed [all …]
|
| /titanic_41/usr/src/man/man1m/ |
| H A D | pppstats.1m | 120 Number of header-compressed TCP packets received by this interface. 139 Number of corrupted or bogus header-compressed TCP packets received by this 149 Number of VJ header-compressed TCP packets dropped on reception by this 171 scheme in use, defined as the uncompressed size divided by the compressed size. 181 Total number of bytes received, after decompression of compressed packets. Only 212 Number of TCP packets transmitted from this interface with VJ-compressed TCP 242 Number of searches for the cached header entry for a VJ header compressed TCP 253 compressed TCP packet. Only reported when the \fB-v\fR option is specified. 263 scheme in use, defined as the size before compression divided by the compressed 286 \fB\fBCOMPRESSED BYTE\fR\fR [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | SSL_CTX_set1_cert_comp_preference.pod | 68 B<alg> is 0, then the certificates are compressed with the algorithms specified 70 will result in an error, as only server certificates may be pre-compressed. 73 the pre-compressed certificate most recently set that may be stored for later 75 error, as only server certificates may be pre-compressed. The B<data> and 78 The compressed certificate data may be passed to SSL_CTX_set1_compressed_cert() 79 or SSL_set1_compressed_cert() to provide a pre-compressed version of the 80 most recently set certificate. This pre-compressed certificate can only be used 86 to their peer indicating compressed certificate support. The received preference 91 compressed certificate. 93 Only server certificates may be pre-compressed. Calling any of these functions [all …]
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | SSL_CTX_set1_cert_comp_preference.3 | 122 \&\fBalg\fR is 0, then the certificates are compressed with the algorithms specified 124 will result in an error, as only server certificates may be pre-compressed. 127 the pre-compressed certificate most recently set that may be stored for later 129 error, as only server certificates may be pre-compressed. The \fBdata\fR and 132 The compressed certificate data may be passed to \fBSSL_CTX_set1_compressed_cert()\fR 133 or \fBSSL_set1_compressed_cert()\fR to provide a pre-compressed version of the 134 most recently set certificate. This pre-compressed certificate can only be used 139 to their peer indicating compressed certificate support. The received preference 144 compressed certificate. 146 Only server certificates may be pre-compressed. Calling any of these functions [all …]
|
| /freebsd/sys/contrib/zlib/doc/ |
| H A D | rfc1951.txt | 12 DEFLATE Compressed Data Format Specification version 1.3 42 This specification defines a lossless compressed data format that 60 RFC 1951 DEFLATE Compressed Data Format Specification May 1996 72 2. Compressed representation overview ............................. 4 76 3.2. Compressed block format ................................... 6 80 3.2.4. Non-compressed blocks (BTYPE=00) ................... 11 81 3.2.5. Compressed blocks (length and distance codes) ...... 11 97 compressed data format that: 116 RFC 1951 DEFLATE Compressed Data Format Specification May 1996 126 * Allow random access to compressed data; [all …]
|
| H A D | rfc1950.txt | 14 ZLIB Compressed Data Format Specification version 3.3 44 This specification defines a lossless compressed data format. The 60 RFC 1950 ZLIB Compressed Data Format Specification May 1996 89 compressed data format that: 106 allow random access to compressed data. 116 RFC 1950 ZLIB Compressed Data Format Specification May 1996 131 The specification specifies a compressed data format that can be 172 RFC 1950 ZLIB Compressed Data Format Specification May 1996 228 RFC 1950 ZLIB Compressed Data Format Specification May 1996 239 |...compressed data...| ADLER32 | [all …]
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_write_add_filter_gzip.c | 65 unsigned char *compressed; member 142 free(data->compressed); in archive_compressor_gzip_free() 197 if (data->compressed == NULL) { in archive_compressor_gzip_open() 209 data->compressed = malloc(data->compressed_buffer_size); in archive_compressor_gzip_open() 210 if (data->compressed == NULL) { in archive_compressor_gzip_open() 218 data->stream.next_out = data->compressed; in archive_compressor_gzip_open() 222 data->compressed[0] = 0x1f; /* GZip signature bytes */ in archive_compressor_gzip_open() 223 data->compressed[1] = 0x8b; in archive_compressor_gzip_open() 224 data->compressed[2] = 0x08; /* "Deflate" compression */ in archive_compressor_gzip_open() 225 data->compressed[3] = 0x00; /* Flags */ in archive_compressor_gzip_open() [all …]
|
| H A D | archive_write_add_filter_lzop.c | 64 unsigned char *compressed; 88 * compressed size(4 bytes) and the checksum of uncompressed data(4 bytes) 197 free(data->compressed); in archive_write_lzop_free() 260 if (data->compressed == NULL) { in archive_write_lzop_open() 263 data->compressed = (unsigned char *) in archive_write_lzop_open() 265 if (data->compressed == NULL) { in archive_write_lzop_open() 292 memcpy(data->compressed, header, sizeof(header)); in make_header() 294 data->compressed[HEADER_LIBVERSION] = (unsigned char ) in make_header() 296 data->compressed[HEADER_LIBVERSION + 1] = (unsigned char ) in make_header() 299 data->compressed[HEADER_METHO in make_header() 65 unsigned char *compressed; global() member [all...] |
| H A D | archive_write_add_filter_xz.c | 106 unsigned char *compressed; member 229 data->stream.next_out = data->compressed; in archive_compressor_xz_init_stream() 272 data->compressed[0] = 0x4C; in archive_compressor_xz_init_stream() 273 data->compressed[1] = 0x5A; in archive_compressor_xz_init_stream() 274 data->compressed[2] = 0x49; in archive_compressor_xz_init_stream() 275 data->compressed[3] = 0x50; in archive_compressor_xz_init_stream() 276 data->compressed[4] = 1;/* Version */ in archive_compressor_xz_init_stream() 277 data->compressed[5] = (unsigned char)ds; in archive_compressor_xz_init_stream() 310 if (data->compressed == NULL) { in archive_compressor_xz_open() 322 data->compressed = malloc(data->compressed_buffer_size); in archive_compressor_xz_open() [all …]
|
| /freebsd/contrib/libarchive/libarchive/test/ |
| H A D | test_compat_lz4.c | 39 * compressed in different ways. 90 /* This sample has been 'split', each piece compressed separately, in DEFINE_TEST() 94 /* This sample has been compressed as a single stream, but then in DEFINE_TEST() 97 /* This sample has been compressed as a legacy stream. */ in DEFINE_TEST() 99 /* This sample has been compressed with -B4 option. */ in DEFINE_TEST() 103 /* This sample has been compressed with -B5 option. */ in DEFINE_TEST() 105 /* This sample has been compressed with -B6 option. */ in DEFINE_TEST() 107 /* This sample has been compressed with -B7 option. */ in DEFINE_TEST() 109 /* This sample has been compressed with -B4 and -BD options. */ in DEFINE_TEST() 111 /* This sample has been compressed with -B5 and -BD options. */ in DEFINE_TEST() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVMakeCompressible.cpp | 9 // This pass searches for instructions that are prevented from being compressed 13 // 2. A base register + offset where the offset is too large to be compressed 14 // and the base register may or may not be compressed. 17 // For case 1, if a compressed register is available, then the uncompressed 18 // register is copied to the compressed register and its uses are replaced. 26 // If a compressed register (e.g. a1) is available, the above can be transformed 35 // For case 2, if a compressed register is available, then the original base 50 // If a compressed register is available (e.g. a3), a new base could be created 146 // Return a mask for the offset bits of a non-stack-pointer based compressed 152 // Return true if Offset fits within a compressed stack-pointer based [all …]
|
| /freebsd/sys/contrib/edk2/Include/Protocol/ |
| H A D | Decompress.h | 24 the compressed data specified by Source and SourceData, then 36 @param Source The source buffer containing the compressed data. 39 that will be generated when the compressed buffer specified 42 is required to decompress the compressed buffer specified by 48 buffer cannot be determined from the compressed data specified by 71 If the compressed source data specified by Source and SourceSize is 73 If the compressed source data specified by Source and SourceSize is not in 74 a valid compressed data format, then EFI_INVALID_PARAMETER is returned. 77 @param Source The source buffer containing the compressed data. 91 corrupted (not in a valid compressed format).
|
| /freebsd/contrib/bzip2/ |
| H A D | bzip2.1 | 48 command-line flags. Each file is replaced by a compressed version of 50 Each compressed file 71 write compressed output to a terminal, as this would be entirely 83 from that of the compressed file as follows: 110 concatenation of two or more compressed files. The result is the 114 compressed files is also supported. 117 giving the \-c flag. Multiple files may be compressed and 121 containing multiple compressed file representations. Such a stream 145 Compression is always performed, even if the compressed 158 original. This guards against corruption of the compressed data, and [all …]
|
| /titanic_41/usr/src/man/man1/ |
| H A D | compress.1 | 49 specified, the standard input is compressed to the standard output. 57 specified during compression is encoded within the compressed file, along with 59 recompression of compressed data is subsequently allowed. 64 have been compressed using the \fBcompress\fR utility. If no files are 75 that have been compressed using \fBcompress\fR. It is the equivalent of 89 larger, less compressed files. 158 A path name of a file to be compressed by \fBcompress\fR, uncompressed by 215 One or more files were not compressed because they would have increased in size 292 \fB\fIfile\fR: not in compressed format\fR 296 The file specified to \fBuncompress\fR has not been compressed. [all …]
|
| /freebsd/usr.bin/compress/ |
| H A D | zopen.3 | 33 .Nd compressed stream open function 42 opens the compressed file whose name is the string pointed to by 51 Open compressed file for reading. 54 Truncate file to zero length or create compressed file for writing. 107 The compressed file starts with an invalid header, or the compressed 108 file is compressed with more bits than can be handled.
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/ |
| H A D | redacted_compressed.ksh | 23 # Verify that compressed send streams are redacted correctly. 26 # 1. Receive a redacted compressed send stream, verifying compression and 32 typeset ds_name="compressed" 52 log_must stream_has_features $stream compressed lz4 redacted 61 log_must stream_has_features $stream compressed lz4 68 log_must stream_has_features $stream compressed lz4 72 log_pass "Compressed send streams are redacted correctly."
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
| H A D | send-c_recv_lz4_disabled.ksh | 24 # Verify a pool without the lz4 feature gracefully rejects a compressed stream 25 # because on any sending pool that supports it, metadata will be compressed 26 # with lz4 even if user data is not compressed. 31 # 2. Attempt to receive the compressed stream (should fail) 37 log_assert "Verify compressed streams are rejected if incompatible." 69 log_pass "Compressed streams are rejected if incompatible."
|
| /freebsd/usr.bin/gzip/ |
| H A D | gzexe | 25 # A simple string to recognize already compressed files 26 magic="# compressed by gzexe" 55 # Test if a file is compressed by checking the magic line 56 compressed () { 162 if ! compressed "$1"; then 163 echo "$prog: $1 is not compressed" 169 if compressed "$1"; then 170 echo "$prog: $1 is already compressed"
|
| /titanic_41/usr/src/cmd/ssh/libssh/common/ |
| H A D | compress.c | 61 debug("compress outgoing: raw data %lu, compressed %lu, factor %.2f", in buffer_compress_uninit() 65 debug("compress incoming: raw data %lu, compressed %lu, factor %.2f", in buffer_compress_uninit() 77 * compressed using this function will form a single compressed data stream; 81 * receiver. This appends the compressed data to the output buffer. 108 /* Append compressed data to output_buffer. */ in buffer_compress() 122 * uncompressed using this function will form a single compressed data 125 * buffer_compress was called, and in the same order that buffers compressed
|
| /freebsd/sys/contrib/xz-embedded/linux/lib/xz/ |
| H A D | xz_dec_lzma2.c | 228 /* Next position after decoding the compressed size of the chunk. */ 235 * Compressed size of LZMA chunk or compressed/uncompressed 238 uint32_t compressed; member 885 if (s->temp.size > 0 || s->lzma2.compressed == 0) { in lzma2_lzma() 887 if (tmp > s->lzma2.compressed - s->temp.size) in lzma2_lzma() 888 tmp = s->lzma2.compressed - s->temp.size; in lzma2_lzma() 894 if (s->temp.size + tmp == s->lzma2.compressed) { in lzma2_lzma() 913 s->lzma2.compressed -= s->rc.in_pos; in lzma2_lzma() 931 if (in_avail >= s->lzma2.compressed + LZMA_IN_REQUIRED) in lzma2_lzma() 932 s->rc.in_limit = b->in_pos + s->lzma2.compressed; in lzma2_lzma() [all …]
|
| /freebsd/lib/libc/net/ |
| H A D | resolver.3 | 313 The size of the compressed name is returned or \-1 if there were errors. 321 to previously-compressed names in the current message. 331 as the name is compressed. 336 names are not compressed. 346 expands the compressed domain name 349 The compressed name is contained in a query or reply message; 356 The size of compressed name is returned or \-1 if there was an error. 360 function skips over a compressed domain name, which starts at a location 363 The compressed name is contained in a query or reply message; 366 The size of compressed name is returned or \-1 if there was
|
| /freebsd/sys/dev/qat/qat_api/include/dc/ |
| H A D | cpa_dc_chain.h | 50 * 2nd operation is to perform hash on compressed text 57 * 2nd operation is to perform encryption on compressed text 64 * 2nd operation is to perform hash on compressed text and 65 * encryption on compressed text 72 * 2nd operation is to perform encryption on compressed text and 73 * hash on compressed & encrypted text 80 * 2nd operation is to perform AEAD encryption on compressed text 93 * 1st operation is to perform hash verify on compressed text 94 * 2nd operation is to perform decompression on compressed text 100 * 1st operation is to perform decryption on compressed & encrypted text [all …]
|