| /src/usr.bin/gzip/ |
| 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 () { function 162 if ! compressed "$1"; then 163 echo "$prog: $1 is not compressed" 169 if compressed "$1"; then 170 echo "$prog: $1 is already compressed"
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| inet_ntop.c | 88 int compressed = 0; local 97 if (compressed == 0 && 103 compressed = 1;
|
| /src/external/bsd/zstd/dist/tests/ |
| longmatch.c | 61 U64 compressed = 0; local 86 compressed += size; 87 while (compressed < toCompress) { 94 compressed += block;
|
| /src/sys/kern/ |
| kern_ctf.c | 86 int compressed = 0; local 160 /* Check if the data is compressed. */ 174 compressed = 1; 177 * The CTF data is not compressed, so the ELF section 187 if (compressed) { 199 if (compressed) { 204 * The header isn't compressed, so copy that into the
|
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| sect-names.h | 24 section name (usually from the DWARF standard), while the field COMPRESSED 25 is the name of compressed sections. If your object file format doesn't 26 support compressed sections, the field COMPRESSED can be NULL. Likewise, 28 It doesn't make sense to have a NULL NORMAL field but a non-NULL COMPRESSED 33 const char *compressed; member in struct:dwarf2_section_names 39 || (compressed != nullptr && strcmp (name, compressed) == 0));
|
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| sect-names.h | 24 section name (usually from the DWARF standard), while the field COMPRESSED 25 is the name of compressed sections. If your object file format doesn't 26 support compressed sections, the field COMPRESSED can be NULL. Likewise, 28 It doesn't make sense to have a NULL NORMAL field but a non-NULL COMPRESSED 33 const char *compressed; member in struct:dwarf2_section_names 39 || (compressed != nullptr && strcmp (name, compressed) == 0));
|
| /src/external/public-domain/xz/dist/src/xz/ |
| suffix.c | 113 /// \brief Removes the filename suffix of the compressed file 121 const char *compressed; member in struct:__anon427 141 new_len = test_suffix(suffixes[i].compressed,
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_write_add_filter_bzip2.c | 61 char *compressed; member in struct:private_data 171 if (data->compressed == NULL) { 183 data->compressed = malloc(data->compressed_buffer_size); 184 if (data->compressed == NULL) { 192 data->stream.next_out = data->compressed; 232 * Write data to the compressed stream. 268 data->compressed, 291 free(data->compressed); 313 data->compressed, 319 data->stream.next_out = data->compressed; [all...] |
| archive_write_add_filter_gzip.c | 65 unsigned char *compressed; member in struct:private_data 142 free(data->compressed); 203 if (data->compressed == NULL) { 215 data->compressed = malloc(data->compressed_buffer_size); 216 if (data->compressed == NULL) { 224 data->stream.next_out = data->compressed; 228 data->compressed[0] = 0x1f; /* GZip signature bytes */ 229 data->compressed[1] = 0x8b; 230 data->compressed[2] = 0x08; /* "Deflate" compression */ 231 data->compressed[3] = 0x00; /* Flags * [all...] |
| archive_write_add_filter_compress.c | 104 unsigned char *compressed; member in struct:private_data 170 state->compressed = malloc(state->compressed_buffer_size); 172 if (state->compressed == NULL) { 197 state->compressed[0] = 0x1f; /* Compress */ 198 state->compressed[1] = 0x9d; 199 state->compressed[2] = 0x90; /* Block mode, 16bit max */ 229 state->compressed[state->compressed_offset++] = c; 234 state->compressed, state->compressed_buffer_size); 327 * Write data to the compressed stream. 433 state->compressed, state->compressed_offset) [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvfw/ |
| ls.h | 37 u32 compressed; member in struct:nvfw_ls_desc 50 u32 compressed; member in struct:nvfw_ls_desc_v1
|
| /src/external/gpl2/texinfo/dist/info/ |
| dir.c | 142 int compressed; local 144 &finfo, &compressed);
|
| /src/external/public-domain/xz/dist/tests/ |
| test_microlzma.c | 200 // compressed data. 262 // Helper function to encode data and return the compressed size. 265 uint8_t **compressed) 276 *compressed = tuktest_malloc(out_size); 287 strm.next_out = *compressed; 416 // the MicroLZMA decoder knows the exact compressed size from 469 // When uncomp_size_is_exact is set, the compressed size must be 484 // detect when the compressed size is wrong as long as all of the 499 uint8_t *compressed = tuktest_malloc(goodbye_world_encoded_size); local 500 memcpy(compressed, goodbye_world_encoded, goodbye_world_encoded_size) [all...] |
| /src/sys/lib/libsa/ |
| cread.c | 30 * Support for compressed bootfiles (only read) 77 int compressed; /* 1 if input file is a .gz file */ member in struct:sd 203 * We must not change s->compressed if we are at EOF; 207 * to lseek on this file as a compressed file. 211 s->compressed = 0; 219 s->compressed = 1; 340 if (s->compressed == 0) { 444 if(s->compressed == 0) { 501 panic("lseek compressed");
|
| /src/usr.sbin/vnconfig/ |
| vnconfig.c | 103 static int compressed = 0; variable 157 compressed = 1; 325 if (compressed)
|
| /src/external/gpl3/binutils/dist/bfd/ |
| compress.c | 0 /* Compressed section support (intended for debug sections). 38 .{* Types of compressed DWARF debug sections. *} 59 . ch_compress_zlib = 1 , {* Compressed with zlib. *} 60 . ch_compress_zstd = 2 {* Compressed with zstd (www.zstandard.org). *} 90 /* Display texts for type of compressed DWARF debug sections. */ 508 /* Copy the compressed contents. */ 539 /* It is possible the section consists of several compressed 563 compressed successfully. Otherwise return (bfd_size_type) -1. */ 578 bool compressed local 586 /* We shouldn't be trying to decompress unsupported compressed sections. * 888 bool compressed; local [all...] |
| /src/external/gpl3/binutils.old/dist/bfd/ |
| compress.c | 0 /* Compressed section support (intended for debug sections). 36 .{* Types of compressed DWARF debug sections. *} 57 . ch_compress_zlib = 1 , {* Compressed with zlib. *} 58 . ch_compress_zstd = 2 {* Compressed with zstd (www.zstandard.org). *} 88 /* Display texts for type of compressed DWARF debug sections. */ 491 /* Copy the compressed contents. */ 520 /* It is possible the section consists of several compressed 544 compressed successfully. Otherwise return (bfd_size_type) -1. */ 559 bool compressed local 567 /* We shouldn't be trying to decompress unsupported compressed sections. * 867 bool compressed; local [all...] |
| /src/external/gpl3/gcc/dist/libbacktrace/ |
| xztest.c | 86 const char *compressed; member in struct:lzma_test 153 tests[i].compressed),
|
| zstdtest.c | 85 const char *compressed; member in struct:zstd_test 215 tests[i].compressed),
|
| ztest.c | 85 const char *compressed; member in struct:zlib_test 209 memcpy (p + 12, tests[i].compressed, tests[i].compressed_len);
|
| /src/external/gpl3/gcc.old/dist/libbacktrace/ |
| xztest.c | 86 const char *compressed; member in struct:lzma_test 153 tests[i].compressed),
|
| ztest.c | 85 const char *compressed; member in struct:zlib_test 209 memcpy (p + 12, tests[i].compressed, tests[i].compressed_len);
|
| /src/external/gpl3/gdb/dist/libbacktrace/ |
| xztest.c | 86 const char *compressed; member in struct:lzma_test 153 tests[i].compressed),
|
| zstdtest.c | 85 const char *compressed; member in struct:zstd_test 215 tests[i].compressed),
|
| ztest.c | 85 const char *compressed; member in struct:zlib_test 209 memcpy (p + 12, tests[i].compressed, tests[i].compressed_len);
|