HomeSort by relevance Sort by last modified time
    Searched refs:GZIP (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.java 48 public static final String GZIP = "gzip";
50 public static final String ACCEPTED = GZIP + "," + DEFLATE;
56 } else if (GZIP.equalsIgnoreCase(encoding)
57 || ("x-" + GZIP).equalsIgnoreCase(encoding)) {
58 return GZIP;
73 if (encoding == GZIP) {
  /external/tensorflow/tensorflow/core/lib/io/
zlib_compression_options.h 30 static ZlibCompressionOptions GZIP();
55 // looking for a zlib or gzip header, not generating a check value, and not
59 // window_bits can also be greater than 15 for optional gzip encoding. Add 16
60 // to window_bits to write a simple gzip header and trailer around the
61 // compressed data instead of a zlib wrapper. The gzip header will have no
64 // gzip stream is being written, strm->adler is a crc32 instead of an adler32.
122 inline ZlibCompressionOptions ZlibCompressionOptions::GZIP() {
zlib_buffers_test.cc 105 TEST(ZlibBuffers, Gzip) {
106 TestAllCombinations(CompressionOptions::GZIP(), CompressionOptions::GZIP());
304 TestTell(CompressionOptions::GZIP(), CompressionOptions::GZIP());
316 TestSkipNBytes(CompressionOptions::GZIP(), CompressionOptions::GZIP());
record_writer.cc 48 options.zlib_options = io::ZlibCompressionOptions::GZIP();
  /external/e2fsprogs/util/
gen-tarball.in 11 GZIP=gzip
49 | $GZIP -9 -c > $SRCROOT.tar.gz
50 $GZIP -l $SRCROOT.tar.gz
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 59 // zlib will autodetect gzip header or deflate stream
62 // GZIP streams have some extra header data for file attributes.
63 GZIP = 1,
69 // buffer_size and format may be -1 for default of 64kB and GZIP format
114 // GZIP streams have some extra header data for file attributes.
115 GZIP = 1,
122 // Defaults to GZIP.
172 // Writes out all data and closes the gzip stream.
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
gzip_stream.h 60 // zlib will autodetect gzip header or deflate stream
63 // GZIP streams have some extra header data for file attributes.
64 GZIP = 1,
70 // buffer_size and format may be -1 for default of 64kB and GZIP format
114 // GZIP streams have some extra header data for file attributes.
115 GZIP = 1,
122 // Defaults to GZIP.
172 // Writes out all data and closes the gzip stream.
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
gzip_stream.h 60 // zlib will autodetect gzip header or deflate stream
63 // GZIP streams have some extra header data for file attributes.
64 GZIP = 1,
70 // buffer_size and format may be -1 for default of 64kB and GZIP format
114 // GZIP streams have some extra header data for file attributes.
115 GZIP = 1,
122 // Defaults to GZIP.
172 // Writes out all data and closes the gzip stream.
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
gzip_stream.h 59 // zlib will autodetect gzip header or deflate stream
62 // GZIP streams have some extra header data for file attributes.
63 GZIP = 1,
69 // buffer_size and format may be -1 for default of 64kB and GZIP format
114 // GZIP streams have some extra header data for file attributes.
115 GZIP = 1,
122 // Defaults to GZIP.
172 // Writes out all data and closes the gzip stream.
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
gzip_stream.h 60 // zlib will autodetect gzip header or deflate stream
63 // GZIP streams have some extra header data for file attributes.
64 GZIP = 1,
70 // buffer_size and format may be -1 for default of 64kB and GZIP format
114 // GZIP streams have some extra header data for file attributes.
115 GZIP = 1,
122 // Defaults to GZIP.
172 // Writes out all data and closes the gzip stream.
  /tools/tradefederation/core/src/com/android/tradefed/result/
LogDataType.java 31 TAR_GZ("tar.gz", "application/gzip", true, false),
32 GZIP("gz", "application/gzip", true, false),
  /external/tensorflow/tensorflow/python/lib/io/
tf_record.py 33 GZIP = 2
43 TFRecordCompressionType.GZIP: "GZIP",
  /external/libexif/doc/
Makefile.am 34 (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_DIR) | GZIP=--best gzip -c) > $@
46 (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_INTERNALS_DIR) | GZIP=--best gzip -c) > $@
  /external/squashfs-tools/squashfs-tools/
Makefile 6 ############# Building gzip support ###########
8 # Gzip support is by default enabled, and the compression type default
9 # (COMP_DEFAULT) is gzip.
11 # If you don't want/need gzip support then comment out the GZIP SUPPORT line
15 # Obviously, you must select at least one of the available gzip, lzma, lzo
84 COMP_DEFAULT = gzip
131 COMPRESSORS += gzip
212 $(error "No compressor selected! Select one or more of GZIP, LZMA, XZ, LZO or \
  /external/tensorflow/tensorflow/python/data/ops/
readers.py 43 `""` (no compression), `"ZLIB"`, or `"GZIP"`.
86 `""` (no compression), `"ZLIB"`, or `"GZIP"`.
  /prebuilts/go/darwin-x86/src/compress/gzip/
gzip.go 5 package gzip package
17 // "compress/gzip" does not also have to import "compress/flate".
62 return nil, fmt.Errorf("gzip: invalid compression level: %d", level)
95 return errors.New("gzip.Write: Extra data is too large")
106 // writeString writes a UTF-8 string s in GZIP's format to z.w.
107 // GZIP (RFC 1952) specifies that strings are NUL-terminated ISO 8859-1 (Latin-1).
109 // GZIP stores Latin-1 strings; error if non-Latin-1; convert if non-ASCII.
113 return errors.New("gzip.Write: non-Latin-1 header string")
131 // GZIP strings are NUL-terminated.
144 // Write the GZIP header lazily
    [all...]
  /prebuilts/go/linux-x86/src/compress/gzip/
gzip.go 5 package gzip package
17 // "compress/gzip" does not also have to import "compress/flate".
62 return nil, fmt.Errorf("gzip: invalid compression level: %d", level)
95 return errors.New("gzip.Write: Extra data is too large")
106 // writeString writes a UTF-8 string s in GZIP's format to z.w.
107 // GZIP (RFC 1952) specifies that strings are NUL-terminated ISO 8859-1 (Latin-1).
109 // GZIP stores Latin-1 strings; error if non-Latin-1; convert if non-ASCII.
113 return errors.New("gzip.Write: non-Latin-1 header string")
131 // GZIP strings are NUL-terminated.
144 // Write the GZIP header lazily
    [all...]
  /external/libxml2/
xzlib.c 45 #define LOOK 0 /* look for a gzip/lzma header */
47 #define GZIP 2 /* decompress a gzip stream */
127 state->how = LOOK; /* look for gzip header */
200 case GZIP:
453 /* look for the gzip magic header bytes 31 and 139 */
460 /* we have a gzip header, woo hoo! */
503 state->how = GZIP;
507 /* not a gzip file -- save first byte (31) and fall to raw i/o */
554 if (state->how == GZIP) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzguts.h 149 /* gzip modes, also provide a little integrity check on the passed structure */
156 #define LOOK 0 /* look for a gzip header */
158 #define GZIP 2 /* decompress a gzip stream */
160 /* internal gzip file state data structure */
168 int mode; /* see gzip modes above */
175 int direct; /* 0 if processing gzip, 1 if transparent */
178 z_off64_t start; /* where the gzip data started, for rewinding */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/
gzguts.h 155 /* gzip modes, also provide a little integrity check on the passed structure */
162 #define LOOK 0 /* look for a gzip header */
164 #define GZIP 2 /* decompress a gzip stream */
166 /* internal gzip file state data structure */
174 int mode; /* see gzip modes above */
181 int direct; /* 0 if processing gzip, 1 if transparent */
184 z_off64_t start; /* where the gzip data started, for rewinding */
  /external/python/cpython2/Modules/zlib/
gzguts.h 149 /* gzip modes, also provide a little integrity check on the passed structure */
156 #define LOOK 0 /* look for a gzip header */
158 #define GZIP 2 /* decompress a gzip stream */
160 /* internal gzip file state data structure */
168 int mode; /* see gzip modes above */
175 int direct; /* 0 if processing gzip, 1 if transparent */
178 z_off64_t start; /* where the gzip data started, for rewinding */
  /external/python/cpython3/Modules/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 */
  /external/tensorflow/tensorflow/core/kernels/
decode_compressed_op.cc 79 compression_type_ == "GZIP"),
81 "Only ZLIB, GZIP or NONE are supported compressions"));
101 : io::ZlibCompressionOptions::GZIP();
  /external/zlib/src/
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 */
  /toolchain/binutils/binutils-2.27/zlib/
gzguts.h 149 /* gzip modes, also provide a little integrity check on the passed structure */
156 #define LOOK 0 /* look for a gzip header */
158 #define GZIP 2 /* decompress a gzip stream */
160 /* internal gzip file state data structure */
168 int mode; /* see gzip modes above */
175 int direct; /* 0 if processing gzip, 1 if transparent */
178 z_off64_t start; /* where the gzip data started, for rewinding */

Completed in 624 milliseconds

1 2 3 4 5 6