HomeSort by relevance Sort by last modified time
    Searched full:gzip (Results 51 - 75 of 640) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/protobuf/src/google/protobuf/io/
gzip_stream_unittest.sh 35 # Test compatibility between command line gzip/gunzip binaries and
41 (gzip < ${TESTFILE} | ./zcgunzip | cmp - ${TESTFILE})
  /external/zlib/src/examples/
gun.c 8 1.1 21 Feb 2005 Decompress concatenated gzip streams
27 decompresses the data in the named gzip files. If no arguments are given,
34 listed files or stdin will be tested as gzip files for integrity (without
38 Like gzip, gun allows concatenated gzip streams and will decompress them,
39 writing all of the uncompressed data to the output. Unlike gzip, gun allows
116 bytes output, both for checking against the gzip trailer. (The length in
117 the gzip trailer is stored modulo 2^32, so it's ok if a long is 32 bits and
165 unsigned char match[65280 + 2]; /* buffer for reversed match or gzip
371 /* Decompress a gzip file from infile to outfile. strm is assumed to have bee
    [all...]
gzlog.c 9 gzlog provides a mechanism for frequently appending short strings to a gzip
12 the gzip file, only compressing when the amount of uncompressed data has
17 in the gzip file, and is only updated once the gzip file is brought to a
31 foo.gz -- gzip file with the complete log
38 gzip file structure:
43 - gzip trailer
44 - no junk at end (no other gzip streams)
50 well as the crc and length of the gzip data before the append operation.
52 The foo.add file is created before the gzip file is marked for append, an
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
56 'compress' must be "gzip" (the default), "compress", "bzip2", or None.
68 tar_compression = {'gzip': 'gz', 'bzip2': 'bz2', None: '', 'compress': ''}
69 compress_ext = {'gzip': '.gz', 'bzip2': '.bz2', 'compress': '.Z'}
74 ("bad value for 'compress': must be None, 'gzip', 'bzip2' "
176 'gztar': (make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
56 'compress' must be "gzip" (the default), "compress", "bzip2", or None.
68 tar_compression = {'gzip': 'gz', 'bzip2': 'bz2', None: '', 'compress': ''}
69 compress_ext = {'gzip': '.gz', 'bzip2': '.bz2', 'compress': '.Z'}
74 ("bad value for 'compress': must be None, 'gzip', 'bzip2' "
176 'gztar': (make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
  /external/zlib/src/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
63 The library also supports reading and writing files in gzip (.gz) format
65 with "gz". The gzip format is different from the zlib format. gzip is a
66 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
68 This library can optionally read and write gzip streams in memory as well.
71 and on communications channels. The gzip format was designed for single-
109 gzip header information passed to and from zlib routines. See RFC 1952
115 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /external/chromium_org/third_party/zlib/
gzread.c 1 /* gzread.c -- zlib functions for reading gzip files
92 /* Look for gzip header, set up for inflate or copy. state->have must be zero.
95 if there is no gzip header and direct copying will be performed, or it will
96 be set to GZIP for decompression, and the gzip header will be skipped so
102 success or -1 on failure. Failures may include read errors or gzip header
149 /* look for the gzip magic header bytes 31 and 139 */
156 /* we have a gzip header, woo hoo! */
199 state->how = GZIP;
204 /* not a gzip file -- save first byte (31) and fall to raw i/o *
    [all...]
  /external/openssh/contrib/cygwin/
Makefile 70 gzip-man-pages:
72 gzip $(DESTDIR)$(mandir)/man1/*.1
73 gzip $(DESTDIR)$(mandir)/man5/*.5
74 gzip $(DESTDIR)$(mandir)/man8/*.8
77 cygwin-postinstall: move-config-files remove-empty-dir install-inetd-config install-doc install-scripts install-copy-id gzip-man-pages
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/
commons-compress-1.0-sources.jar 
  /system/extras/ext4_utils/
make_ext4fs_main.c 67 int gzip = 0; local
119 gzip = 1;
170 if (wipe && gzip) {
171 fprintf(stderr, "Cannot specifiy both wipe and gzip\n");
203 exitcode = make_ext4fs_internal(fd, directory, mountpoint, fs_config_func, gzip,
  /development/ndk/platforms/android-3/include/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /external/chromium/net/base/
filter_unittest.cc 21 Filter::ConvertEncodingToType("gzip"));
23 Filter::ConvertEncodingToType("GzIp"));
25 Filter::ConvertEncodingToType("x-gzip"));
27 Filter::ConvertEncodingToType("X-GzIp"));
43 // Check that redundant gzip mime type removes only solo gzip encoding.
44 const std::string kGzipMime1("application/x-gzip");
45 const std::string kGzipMime2("application/gzip");
49 // First show it removes the gzip, given any gzip style mime type
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /external/chromium_org/net/base/
filter_unittest.cc 21 Filter::ConvertEncodingToType("gzip"));
23 Filter::ConvertEncodingToType("GzIp"));
25 Filter::ConvertEncodingToType("x-gzip"));
27 Filter::ConvertEncodingToType("X-GzIp"));
43 // Check that redundant gzip mime type removes only solo gzip encoding.
44 const std::string kGzipMime1("application/x-gzip");
45 const std::string kGzipMime2("application/gzip");
49 // First show it removes the gzip, given any gzip style mime type
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/zlib/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AcceptEncoding.java 60 * Accept-Encoding: compress, gzip
63 * Accept-Encoding: compress;q=0.5, gzip;q=1.0
64 * Accept-Encoding: gzip;q=1.0, identity; q=0.5, *;q=0
  /external/open-vcdiff/src/zlib/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
zlib.h 23 jloup@gzip.org madler@alumni.caltech.edu
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
60 The library also supports reading and writing files in gzip (.gz) format
62 with "gz". The gzip format is different from the zlib format. gzip is a
63 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream.
65 This library can optionally read and write gzip streams in memory as well.
68 and on communications channels. The gzip format was designed for single-
106 gzip header information passed to and from zlib routines. See RFC 1952
112 int xflags; /* extra flags (not used when writing a gzip file) *
    [all...]

Completed in 2313 milliseconds

1 23 4 5 6 7 8 91011>>