| /src/external/bsd/zstd/dist/tests/gzip/ |
| gzip-env.sh | 2 # Test the obsolescent GZIP environment variable. 23 #gzip --version 26 gzip <exp >in || framework_failure_ 29 GZIP=-qv gzip -d <in >out 2>err || fail=1 36 GZIP=$badopt gzip -d <in >out 2>err && fail=1 42 GZIP=$goodopt gzip -d <in >out 2>err || fail=1
|
| /src/distrib/sets/ |
| makesrctars | 17 GZIP=-9n 18 export GZIP 115 export setdir MTREE PAX CKSUM GZIP PASSWD srcprefix
|
| maketars | 225 GZIP=-9n # for pax -z 226 export GZIP
|
| /src/common/dist/zlib/examples/ |
| zran.c | 9 1.2 14 Oct 2018 Handle gzip streams with multiple members 11 1.3 18 Feb 2023 Permit raw deflate streams as well as zlib and gzip 12 Permit crossing gzip member boundaries when extracting 129 #define GZIP 31 139 int mode = 0; // mode: RAW, ZLIB, or GZIP (0 => not set yet) 158 // if it is neither zlib nor gzip. This could in theory result 164 strm.next_in[0] == 0x1f ? GZIP : 207 if (ret == Z_STREAM_END && mode == GZIP && 209 // There is more input after the end of a gzip member. Reset the 210 // inflate state to read another gzip member. On success, this wil [all...] |
| /src/external/gpl3/binutils/dist/zlib/examples/ |
| zran.c | 9 1.2 14 Oct 2018 Handle gzip streams with multiple members 11 1.3 18 Feb 2023 Permit raw deflate streams as well as zlib and gzip 12 Permit crossing gzip member boundaries when extracting 129 #define GZIP 31 139 int mode = 0; // mode: RAW, ZLIB, or GZIP (0 => not set yet) 158 // if it is neither zlib nor gzip. This could in theory result 164 strm.next_in[0] == 0x1f ? GZIP : 207 if (ret == Z_STREAM_END && mode == GZIP && 209 // There is more input after the end of a gzip member. Reset the 210 // inflate state to read another gzip member. On success, this wil [all...] |
| /src/external/gpl3/gdb/dist/zlib/examples/ |
| zran.c | 9 1.2 14 Oct 2018 Handle gzip streams with multiple members 11 1.3 18 Feb 2023 Permit raw deflate streams as well as zlib and gzip 12 Permit crossing gzip member boundaries when extracting 129 #define GZIP 31 139 int mode = 0; // mode: RAW, ZLIB, or GZIP (0 => not set yet) 158 // if it is neither zlib nor gzip. This could in theory result 164 strm.next_in[0] == 0x1f ? GZIP : 207 if (ret == Z_STREAM_END && mode == GZIP && 209 // There is more input after the end of a gzip member. Reset the 210 // inflate state to read another gzip member. On success, this wil [all...] |
| /src/common/dist/zlib/ |
| gzguts.h | 158 /* gzip modes, also provide a little integrity check on the passed structure */ 165 #define LOOK 0 /* look for a gzip header */ 167 #define GZIP 2 /* decompress a gzip stream */ 169 /* internal gzip file state data structure */ 177 int mode; /* see gzip modes above */ 184 int direct; /* 0 if processing gzip, 1 if transparent */ 187 z_off64_t start; /* where the gzip data started, for rewinding */
|
| deflate.h | 20 /* define NO_GZIP when compiling if you want to disable gzip header and 22 the crc code when it is not needed. For shared libraries, gzip encoding 25 # define GZIP 61 #ifdef GZIP 62 # define GZIP_STATE 57 /* gzip header -> BUSY_STATE | EXTRA_STATE */ 64 #define EXTRA_STATE 69 /* gzip extra block -> NAME_STATE */ 65 #define NAME_STATE 73 /* gzip file name -> COMMENT_STATE */ 66 #define COMMENT_STATE 91 /* gzip comment -> HCRC_STATE */ 67 #define HCRC_STATE 103 /* gzip header CRC -> BUSY_STATE */ 113 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ [all...] |
| deflate.c | 232 #ifdef GZIP 422 #ifdef GZIP 424 wrap = 2; /* write gzip wrapper instead */ 538 #ifdef GZIP 656 #ifdef GZIP 661 #ifdef GZIP 864 #ifdef GZIP 865 case 2: /* gzip wrapper */ 867 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */ 1032 #ifdef GZIP [all...] |
| gzread.c | 1 /* gzread.c -- zlib functions for reading gzip files 67 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0. 70 if there is no gzip header and direct copying will be performed, or it will 71 be set to GZIP for decompression. If direct copying, then leftover input 115 /* look for gzip magic bytes -- if there, do gzip decoding (note: there is 117 gzip file, to wit, if a single 31 byte is written, then we cannot tell 118 whether this is a single-byte file, or just a partially written gzip 119 file -- for here we assume that if a gzip file is being written, then 121 single byte is sufficient indication that it is not a gzip file) * [all...] |
| /src/external/bsd/zstd/dist/zlibWrapper/ |
| gzguts.h | 165 /* gzip modes, also provide a little integrity check on the passed structure */ 172 #define LOOK 0 /* look for a gzip header */ 174 #define GZIP 2 /* decompress a gzip stream */ 176 /* internal gzip file state data structure */ 184 int mode; /* see gzip modes above */ 191 int direct; /* 0 if processing gzip, 1 if transparent */ 194 z_off64_t start; /* where the gzip data started, for rewinding */
|
| gzread.c | 4 /* gzread.c -- zlib functions for reading gzip files 88 /* Look for gzip header, set up for inflate or copy. state.state->x.have must be 0. 91 if there is no gzip header and direct copying will be performed, or it will 92 be set to GZIP for decompression. If direct copying, then leftover input 136 /* look for gzip magic bytes -- if there, do gzip decoding (note: there is 138 gzip file, to wit, if a single 31 byte is written, then we cannot tell 139 whether this is a single-byte file, or just a partially written gzip 140 file -- for here we assume that if a gzip file is being written, then 142 single byte is sufficient indication that it is not a gzip file) * [all...] |
| /src/external/gpl3/binutils/dist/zlib/ |
| gzguts.h | 157 /* gzip modes, also provide a little integrity check on the passed structure */ 164 #define LOOK 0 /* look for a gzip header */ 166 #define GZIP 2 /* decompress a gzip stream */ 168 /* internal gzip file state data structure */ 176 int mode; /* see gzip modes above */ 183 int direct; /* 0 if processing gzip, 1 if transparent */ 186 z_off64_t start; /* where the gzip data started, for rewinding */
|
| deflate.h | 18 /* define NO_GZIP when compiling if you want to disable gzip header and 20 the crc code when it is not needed. For shared libraries, gzip encoding 23 # define GZIP 59 #ifdef GZIP 60 # define GZIP_STATE 57 /* gzip header -> BUSY_STATE | EXTRA_STATE */ 62 #define EXTRA_STATE 69 /* gzip extra block -> NAME_STATE */ 63 #define NAME_STATE 73 /* gzip file name -> COMMENT_STATE */ 64 #define COMMENT_STATE 91 /* gzip comment -> HCRC_STATE */ 65 #define HCRC_STATE 103 /* gzip header CRC -> BUSY_STATE */ 111 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ [all...] |
| deflate.c | 230 #ifdef GZIP 420 #ifdef GZIP 422 wrap = 2; /* write gzip wrapper instead */ 536 #ifdef GZIP 654 #ifdef GZIP 659 #ifdef GZIP 862 #ifdef GZIP 863 case 2: /* gzip wrapper */ 865 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */ 1030 #ifdef GZIP [all...] |
| gzread.c | 1 /* gzread.c -- zlib functions for reading gzip files 67 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0. 70 if there is no gzip header and direct copying will be performed, or it will 71 be set to GZIP for decompression. If direct copying, then leftover input 115 /* look for gzip magic bytes -- if there, do gzip decoding (note: there is 117 gzip file, to wit, if a single 31 byte is written, then we cannot tell 118 whether this is a single-byte file, or just a partially written gzip 119 file -- for here we assume that if a gzip file is being written, then 121 single byte is sufficient indication that it is not a gzip file) * [all...] |
| /src/external/gpl3/binutils.old/dist/zlib/ |
| gzguts.h | 158 /* gzip modes, also provide a little integrity check on the passed structure */ 165 #define LOOK 0 /* look for a gzip header */ 167 #define GZIP 2 /* decompress a gzip stream */ 169 /* internal gzip file state data structure */ 177 int mode; /* see gzip modes above */ 184 int direct; /* 0 if processing gzip, 1 if transparent */ 187 z_off64_t start; /* where the gzip data started, for rewinding */
|
| deflate.h | 18 /* define NO_GZIP when compiling if you want to disable gzip header and 20 the crc code when it is not needed. For shared libraries, gzip encoding 23 # define GZIP 55 #ifdef GZIP 56 # define GZIP_STATE 57 /* gzip header -> BUSY_STATE | EXTRA_STATE */ 58 #define EXTRA_STATE 69 /* gzip extra block -> NAME_STATE */ 59 #define NAME_STATE 73 /* gzip file name -> COMMENT_STATE */ 60 #define COMMENT_STATE 91 /* gzip comment -> HCRC_STATE */ 61 #define HCRC_STATE 103 /* gzip header CRC -> BUSY_STATE */ 107 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ [all...] |
| /src/external/gpl3/gdb.old/dist/zlib/ |
| gzguts.h | 158 /* gzip modes, also provide a little integrity check on the passed structure */ 165 #define LOOK 0 /* look for a gzip header */ 167 #define GZIP 2 /* decompress a gzip stream */ 169 /* internal gzip file state data structure */ 177 int mode; /* see gzip modes above */ 184 int direct; /* 0 if processing gzip, 1 if transparent */ 187 z_off64_t start; /* where the gzip data started, for rewinding */
|
| deflate.h | 18 /* define NO_GZIP when compiling if you want to disable gzip header and 20 the crc code when it is not needed. For shared libraries, gzip encoding 23 # define GZIP 55 #ifdef GZIP 56 # define GZIP_STATE 57 /* gzip header -> BUSY_STATE | EXTRA_STATE */ 58 #define EXTRA_STATE 69 /* gzip extra block -> NAME_STATE */ 59 #define NAME_STATE 73 /* gzip file name -> COMMENT_STATE */ 60 #define COMMENT_STATE 91 /* gzip comment -> HCRC_STATE */ 61 #define HCRC_STATE 103 /* gzip header CRC -> BUSY_STATE */ 107 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ [all...] |
| /src/external/gpl3/gdb/dist/zlib/ |
| gzguts.h | 157 /* gzip modes, also provide a little integrity check on the passed structure */ 164 #define LOOK 0 /* look for a gzip header */ 166 #define GZIP 2 /* decompress a gzip stream */ 168 /* internal gzip file state data structure */ 176 int mode; /* see gzip modes above */ 183 int direct; /* 0 if processing gzip, 1 if transparent */ 186 z_off64_t start; /* where the gzip data started, for rewinding */
|
| deflate.h | 18 /* define NO_GZIP when compiling if you want to disable gzip header and 20 the crc code when it is not needed. For shared libraries, gzip encoding 23 # define GZIP 59 #ifdef GZIP 60 # define GZIP_STATE 57 /* gzip header -> BUSY_STATE | EXTRA_STATE */ 62 #define EXTRA_STATE 69 /* gzip extra block -> NAME_STATE */ 63 #define NAME_STATE 73 /* gzip file name -> COMMENT_STATE */ 64 #define COMMENT_STATE 91 /* gzip comment -> HCRC_STATE */ 65 #define HCRC_STATE 103 /* gzip header CRC -> BUSY_STATE */ 111 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ [all...] |
| /src/external/cddl/osnet/dist/uts/common/zmod/ |
| deflate.h | 18 /* define NO_GZIP when compiling if you want to disable gzip header and 20 the crc code when it is not needed. For shared libraries, gzip encoding 23 # define GZIP 101 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ 102 gz_headerp gzhead; /* gzip header information to write */ 226 * This is applicable only for zip (not gzip or zlib).
|
| deflate.c | 265 #ifdef GZIP 267 wrap = 2; /* write gzip wrapper instead */ 386 #ifdef GZIP 584 #ifdef GZIP 657 #ifdef GZIP 839 #ifdef GZIP 977 #ifdef GZIP
|
| /src/external/bsd/libarchive/dist/libarchive/test/ |
| test_read_format_xar.c | 728 GZIP, 753 case GZIP: 754 /* This gzip must be needed. archive_read_support_format_xar() 755 * will return a warning if gzip is unsupported. */ 807 skipping("Unsupported gzip"); 849 verify(archive1, sizeof(archive1), verify0, verify1, GZIP); 850 verify(archive2, sizeof(archive2), verify0, verify2, GZIP); 851 verify(archive3, sizeof(archive3), verify3, NULL, GZIP); 852 verify(archive4, sizeof(archive4), verify4, NULL, GZIP); 853 verify(archive5, sizeof(archive5), verify5, NULL, GZIP); [all...] |