/third_party/curl/tests/data/ |
D | test387 | 5 gzip 14 …gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzip,gzi…
|
D | test418 | 5 gzip 14 Transfer-Encoding: gzip 15 Transfer-Encoding: gzip 16 Transfer-Encoding: gzip 17 Transfer-Encoding: gzip 18 Transfer-Encoding: gzip 19 Transfer-Encoding: gzip 20 Transfer-Encoding: gzip 21 Transfer-Encoding: gzip 22 Transfer-Encoding: gzip [all …]
|
D | test221 | 22 # I removed the first three bytes of the gzip compressed contents 30 Content-Encoding: gzip 47 HTTP GET gzip compressed content with broken gzip header
|
D | test224 | 65 Content-Encoding: gzip 68 uncompressed gzip data with long gzip header 83 HTTP GET gzip compressed content with huge comment and extra field
|
/third_party/python/Lib/test/ |
D | test_gzip.py | 18 gzip = import_helper.import_module('gzip') variable 60 with gzip.GzipFile(self.filename, 'w'+mode) as f: 63 with gzip.GzipFile(self.filename, 'r'+mode) as f: 67 with gzip.GzipFile(self.filename, 'wb') as f: 82 with gzip.GzipFile(filename, 'w') as f: 85 with gzip.GzipFile(filename, 'a') as f: 87 with gzip.GzipFile(filename) as f: 111 with gzip.GzipFile(self.filename, 'wb') as f: 117 with gzip.GzipFile(self.filename, 'rb') as f: 123 with gzip.GzipFile(self.filename, 'r') as f: [all …]
|
/third_party/boost/libs/iostreams/src/ |
D | gzip.cpp | 32 if (value != gzip::magic::id1) in process() 33 boost::throw_exception(gzip_error(gzip::bad_header)); in process() 37 if (value != gzip::magic::id2) in process() 38 boost::throw_exception(gzip_error(gzip::bad_header)); in process() 42 if (value != gzip::method::deflate) in process() 43 boost::throw_exception(gzip_error(gzip::bad_method)); in process() 64 if (flags_ & gzip::flags::extra) { in process() 66 } else if (flags_ & gzip::flags::name) { in process() 68 } else if (flags_ & gzip::flags::comment) { in process() 70 } else if (flags_ & gzip::flags::header_crc) { in process() [all …]
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
D | no-copyright | 44 src/gzip/adler32.c 45 src/gzip/infblock.c 46 src/gzip/infblock.h 47 src/gzip/infcodes.c 48 src/gzip/infcodes.h 49 src/gzip/inffixed.h 50 src/gzip/inflate.c 51 src/gzip/inftrees.c 52 src/gzip/inftrees.h 53 src/gzip/infutil.c [all …]
|
/third_party/freetype/src/tools/ |
D | no-copyright | 46 src/gzip/adler32.c 47 src/gzip/infblock.c 48 src/gzip/infblock.h 49 src/gzip/infcodes.c 50 src/gzip/infcodes.h 51 src/gzip/inffixed.h 52 src/gzip/inflate.c 53 src/gzip/inftrees.c 54 src/gzip/inftrees.h 55 src/gzip/infutil.c [all …]
|
/third_party/toybox/tests/ |
D | gunzip.test | 10 echo -n "foo " | gzip > f1.gz 11 echo "bar" | gzip > f2.gz 19 echo "hello world" | gzip > f.gz 25 echo -n "foo " | gzip > f1.gz 26 echo "bar" | gzip > f2.gz 36 echo "hello world" | gzip > f1.gz 43 echo "hello world" | gzip > f1.gz
|
D | gzip.test | 33 echo "hello world" | gzip > f.gz 38 echo "hello world" | gzip > f.gz 62 gzip -c1 x > x1.gz 63 gzip -c9 x > x9.gz
|
/third_party/boost/boost/iostreams/filter/ |
D | gzip.hpp | 60 namespace gzip { namespace 141 gzip_params( int level = gzip::default_compression, in gzip_params() 142 int method = gzip::deflated, in gzip_params() 143 int window_bits = gzip::default_window_bits, in gzip_params() 144 int mem_level = gzip::default_mem_level, in gzip_params() 145 int strategy = gzip::default_strategy, in gzip_params() 171 error_(gzip::zlib_error), zlib_error_code_(e.error()) in gzip_error() 199 basic_gzip_compressor( const gzip_params& = gzip::default_compression, 337 bool text() const { return (flags_ & gzip::flags::text) != 0; } in text() 413 basic_gzip_decompressor( int window_bits = gzip::default_window_bits, [all …]
|
/third_party/node/test/parallel/ |
D | test-zlib-write-after-flush.js | 31 const gzip = createCompress(); constant 34 gzip.pipe(gunz); 45 gzip.flush(); 46 gzip.write(input); 47 gzip.end();
|
/third_party/python/Doc/library/ |
D | gzip.rst | 1 :mod:`gzip` --- Support for :program:`gzip` files 4 .. module:: gzip 5 :synopsis: Interfaces for gzip compression and decompression using file objects. 7 **Source code:** :source:`Lib/gzip.py` 12 like the GNU programs :program:`gzip` and :program:`gunzip` would. 16 The :mod:`gzip` module provides the :class:`GzipFile` class, as well as the 18 The :class:`GzipFile` class reads and writes :program:`gzip`\ -format files, 23 :program:`gzip` and :program:`gunzip` programs, such as those produced by 31 Open a gzip-compressed file in binary or text mode, returning a :term:`file 64 An exception raised for invalid gzip files. It inherits :exc:`OSError`. [all …]
|
/third_party/zlib/examples/ |
D | README.examples | 14 uncompress a gzip file 17 - is approximately twice as fast as gzip -d 21 append to a gzip file 26 join gzip files without recalculating the crc or recompressing 32 efficiently and robustly maintain a message log file in gzip format 35 - illustrates use of a gzip header extra field 38 normalize a gzip file by combining members into a single member 52 index a zlib or gzip stream and randomly access it
|
D | zran.c | 104 index->gzip = 8; in addpoint() 109 else if (index->have == index->gzip) { in addpoint() 110 index->gzip <<= 1; in addpoint() 111 next = realloc(index->list, sizeof(struct point) * index->gzip); in addpoint() 138 int gzip = 0; /* true if reading a gzip file */ in deflate_index_build() local 178 gzip = 1; in deflate_index_build() 200 if (gzip && in deflate_index_build() 235 index->gzip = gzip; in deflate_index_build() 332 if (index->gzip == 0) in deflate_index_extract()
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/examples/ |
D | README.examples | 14 uncompress a gzip file 17 - is approximately twice as fast as gzip -d 21 append to a gzip file 26 join gzip files without recalculating the crc or recompressing 32 efficiently and robustly maintain a message log file in gzip format 35 - illustrates use of a gzip header extra field 47 index a zlib or gzip stream and randomly access it
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/examples/ |
D | README.examples | 14 uncompress a gzip file 17 - is approximately twice as fast as gzip -d 21 append to a gzip file 26 join gzip files without recalculating the crc or recompressing 32 efficiently and robustly maintain a message log file in gzip format 35 - illustrates use of a gzip header extra field 47 index a zlib or gzip stream and randomly access it
|
/third_party/boost/libs/iostreams/test/ |
D | gzip_test.cpp | 133 static_cast<char>(gzip::magic::id1), in header_test() 134 static_cast<char>(gzip::magic::id2), in header_test() 135 gzip::method::deflate, // Compression Method: deflate in header_test() 136 gzip::flags::extra | gzip::flags::name | gzip::flags::comment, // flags in header_test() 138 gzip::extra_flags::best_compression, // XFL in header_test() 139 gzip::os_unix, // OS in header_test() 161 BOOST_CHECK_EQUAL(gzip::os_unix, hdr.os()); in header_test()
|
/third_party/grpc/test/core/end2end/fuzzers/ |
D | hpack.dictionary | 42 "\x0Bstream/gzip" 107 "\x0Didentity,gzip" 108 "\x0Cdeflate,gzip" 109 "\x15identity,deflate,gzip" 189 "\x00\x14grpc-accept-encoding\x0Didentity,gzip" 190 "\x00\x14grpc-accept-encoding\x0Cdeflate,gzip" 191 "\x00\x14grpc-accept-encoding\x15identity,deflate,gzip" 194 "\x00\x0Faccept-encoding\x0Didentity,gzip"
|
/third_party/curl/src/ |
D | mkhelp.pl | 108 IO::Compress::Gzip::gzip( 110 $gzip = length($content); 118 Thanks to this operation, the size of this data shrank from $gzip
|
/third_party/node/deps/npm/test/util/ |
D | mock-tarball.js | 33 if (opts.stream && opts.gzip) { 39 if (opts.gzip) { 40 return BB.fromNode(cb => zlib.gzip(ret, cb))
|
/third_party/node/deps/npm/node_modules/libnpmpublish/test/util/ |
D | mock-tarball.js | 32 if (opts.stream && opts.gzip) { 39 if (opts.gzip) { 40 return BB.fromNode(cb => zlib.gzip(ret, cb))
|
/third_party/grpc/test/core/end2end/fuzzers/server_fuzzer_corpus/ |
D | f5424a9d7bd14317b6de7b15587df28bfde8362d | 18 �:pat-accept-encodingidentity,deflate,gziptetrailers 20 …lhostcontent-typeapplrpc+this-is-validgrpc-accept-encodingidentity,deflate,gziptetrailers 21 user-agent"bad-client grpc-c/0.12.0.0ication/grpcgrpc-acce`t-encodingideltity,deflate,gzipte …
|
D | 4b7bcb4ae6c0222a1a24d1fb1a5d96519750ca5e | 18 �:pat-accept-encodingidentity,deflate,gziptetrailers 20 …lhostcontent-typeapplrpc+this-is-validgrpc-accept-encodingidentity,deflate,gziptetrailers 21 user-agent"bad-client grpc-c/0.12.0.0ication/grpcgrpc-acce`t-encodingideltity,deflate,gzipte …
|
D | fd14bea45ecaf13af0053900edb2f17b71a0bf09 | 18 �:pat-accept-encodingidentity,deflate,gziptetrailers 20 …lhostcontent-typeapplrpc+this-is-validgrpc-accept-encodingidentity,deflate,gziptetrailers 21 user-agent"bad-client grpc-c/0.12.0.0ication/grpcgrpc-acce`t-encodingideltity,deflate,gzipte …
|