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

1 2 3 4 5 6 7 8 910

  /external/toybox/tests/
gunzip.test 9 # files without the .gz suffix.
10 echo -n "foo " | gzip > f1.gz
11 echo "bar" | gzip > f2.gz
12 testing "with input files" "gunzip f1.gz f2.gz &&
13 ! test -f f1.gz && ! test -f f2.gz &&
16 rm -f f1 f2 f1.gz f2.gz
19 echo "hello world" | gzip > f.gz
    [all...]
gzip.test 9 # files with the .gz suffix.
13 test -f f1.gz && test -f f2.gz &&
15 zcat f1.gz f2.gz" "foo bar\n" "" ""
16 rm -f f1 f2 f1.gz f2.gz
19 testing "no files (stdin to stdout)" "echo hello world | gzip > f.gz &&
20 test -f f.gz && zcat f.gz" "hello world\n" "" "
    [all...]
zcat.test 7 echo -n "foo " | gzip > f1.gz
8 echo "bar" | gzip > f2.gz
11 testing "files" "zcat f1.gz f2.gz && test -f f1.gz && test -f f2.gz" \
15 testing "-c" "zcat -c f1.gz f2.gz && test -f f1.gz && test -f f2.gz" \
    [all...]
  /external/e2fsprogs/install-utils/
remove_preformat_manpages 13 $PREFORMAT_ROOT/cat8/$i.gz $COMPILED_ROOT/cat8/$i.gz
20 $PREFORMAT_ROOT/cat1/$i.gz $COMPILED_ROOT/cat1/$i.gz
  /external/protobuf/
post_process_dist.sh 13 # 4) Uses the result to create .tar.gz, .tar.bz2, and .zip versions and
31 BASENAME=`basename $1 .tar.gz`
38 tar zxvf $BASENAME.tar.gz
39 rm $BASENAME.tar.gz
46 # Build the dist again in .tar.gz
49 mv $BASENAME.tar.gz ../protobuf-$LANG-$VERSION.tar.gz
  /external/protobuf/util/
post_process_dist.sh 13 # 4) Uses the result to create .tar.gz, .tar.bz2, and .zip versions and
31 BASENAME=`basename $1 .tar.gz`
38 tar zxvf $BASENAME.tar.gz
39 rm $BASENAME.tar.gz
46 # Build the dist again in .tar.gz
49 mv $BASENAME.tar.gz ../protobuf-$LANG-$VERSION.tar.gz
  /external/tensorflow/tensorflow/tools/ci_build/install/
install_hadoop.sh 23 wget -q http://www-us.apache.org/dist/hadoop/common/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz
24 tar xzf hadoop-${HADOOP_VERSION}.tar.gz -C /usr/local
  /external/zlib/src/examples/
gzappend.c 266 file gz; local
269 gz.name = name;
270 gz.fd = open(name, O_RDWR, 0);
271 if (gz.fd == -1) bye("cannot open ", name);
272 gz.buf = malloc(CHUNK);
273 if (gz.buf == NULL) bye("out of memory", "");
274 gz.size = LGCHUNK;
275 gz.left = 0;
278 gzheader(&gz);
291 lastoff = lseek(gz.fd, 0L, SEEK_CUR) - gz.left
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/examples/
gzappend.c 266 file gz; local
269 gz.name = name;
270 gz.fd = open(name, O_RDWR, 0);
271 if (gz.fd == -1) bye("cannot open ", name);
272 gz.buf = malloc(CHUNK);
273 if (gz.buf == NULL) bye("out of memory", "");
274 gz.size = LGCHUNK;
275 gz.left = 0;
278 gzheader(&gz);
291 lastoff = lseek(gz.fd, 0L, SEEK_CUR) - gz.left
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
minigzip.c 49 # define GZ_SUFFIX "-gz"
53 # define GZ_SUFFIX "-gz"
131 # define GZ_SUFFIX ".gz"
146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
201 gzFile gz; local
204 gz = malloc(sizeof(struct gzFile_s));
205 if (gz == NULL)
207 gz->write = strchr(mode, 'w') != NULL;
208 gz->strm.zalloc = myalloc;
209 gz->strm.zfree = myfree;
    [all...]
  /external/python/cpython2/Modules/zlib/
minigzip.c 49 # define GZ_SUFFIX "-gz"
53 # define GZ_SUFFIX "-gz"
131 # define GZ_SUFFIX ".gz"
146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
201 gzFile gz; local
204 gz = malloc(sizeof(struct gzFile_s));
205 if (gz == NULL)
207 gz->write = strchr(mode, 'w') != NULL;
208 gz->strm.zalloc = myalloc;
209 gz->strm.zfree = myfree
    [all...]
  /external/python/cpython3/Modules/zlib/
minigzip.c 49 # define GZ_SUFFIX "-gz"
53 # define GZ_SUFFIX "-gz"
131 # define GZ_SUFFIX ".gz"
146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
201 gzFile gz; local
204 gz = malloc(sizeof(struct gzFile_s));
205 if (gz == NULL)
207 gz->write = strchr(mode, 'w') != NULL;
208 gz->strm.zalloc = myalloc;
209 gz->strm.zfree = myfree
    [all...]
  /external/zlib/src/test/
minigzip.c 49 # define GZ_SUFFIX "-gz"
53 # define GZ_SUFFIX "-gz"
131 # define GZ_SUFFIX ".gz"
146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
201 gzFile gz; local
204 gz = malloc(sizeof(struct gzFile_s));
205 if (gz == NULL)
207 gz->write = strchr(mode, 'w') != NULL;
208 gz->strm.zalloc = myalloc;
209 gz->strm.zfree = myfree
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/test/
minigzip.c 49 # define GZ_SUFFIX "-gz"
53 # define GZ_SUFFIX "-gz"
131 # define GZ_SUFFIX ".gz"
146 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */
201 gzFile gz; local
204 gz = malloc(sizeof(struct gzFile_s));
205 if (gz == NULL)
207 gz->write = strchr(mode, 'w') != NULL;
208 gz->strm.zalloc = myalloc;
209 gz->strm.zfree = myfree
    [all...]
  /external/flatbuffers/biicode/support/
bii-travis.sh 23 wget https://s3.amazonaws.com/biibinaries/thirdparty/cmake-3.0.2-Linux-64.tar.gz
24 tar -xzf cmake-3.0.2-Linux-64.tar.gz
27 rm cmake-3.0.2-Linux-64.tar.gz
  /external/tensorflow/tensorflow/tools/ci_build/builds/
libtensorflow.sh 33 # - lib_package/libtensorflow${SUFFIX}.tar.gz
34 # - lib_package/libtensorflow_jni${SUFFIX}.tar.gz
74 //tensorflow/tools/lib_package:libtensorflow.tar.gz \
75 //tensorflow/tools/lib_package:libtensorflow_jni.tar.gz \
82 cp bazel-bin/tensorflow/tools/lib_package/libtensorflow.tar.gz ${DIR}/libtensorflow${TARBALL_SUFFIX}.tar.gz
83 cp bazel-bin/tensorflow/tools/lib_package/libtensorflow_jni.tar.gz ${DIR}/libtensorflow_jni${TARBALL_SUFFIX}.tar.gz
  /external/libedit/
README.android 8 * Initial downstream on 2013/10/30: Synched to libedit-20130712-3.1.tar.gz
  /external/syslinux/sample/
Makefile 24 %.lss: %.ppm.gz $(PPMTOLSS16)
29 %.ppm.gz: %.png
  /prebuilts/go/darwin-x86/lib/time/
update.bash 19 curl -L -O http://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
20 curl -L -O http://www.iana.org/time-zones/repository/releases/tzdata$DATA.tar.gz
21 tar xzf tzcode$CODE.tar.gz
22 tar xzf tzdata$DATA.tar.gz
  /prebuilts/go/linux-x86/lib/time/
update.bash 19 curl -L -O http://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
20 curl -L -O http://www.iana.org/time-zones/repository/releases/tzdata$DATA.tar.gz
21 tar xzf tzcode$CODE.tar.gz
22 tar xzf tzdata$DATA.tar.gz
  /external/sonic/doc/
post 11 sourceTarball=../../$version.orig.tar.gz
13 destTarball=$version.tar.gz
  /external/tensorflow/tensorflow/tools/ci_build/protobuf/
protobuf_optimized_pip.sh 25 curl -SsL -O https://github.com/google/protobuf/archive/v${PROTOBUF_VERSION}.tar.gz
26 tar xzf v${PROTOBUF_VERSION}.tar.gz
  /prebuilts/go/darwin-x86/src/compress/gzip/
issue14937_test.go 12 // TestGZIPFilesHaveZeroMTimes checks that every .gz file in the tree
33 if !info.IsDir() && strings.HasSuffix(path, ".gz") {
42 t.Fatal("error collecting list of .gz files in GOROOT: ", err)
45 t.Fatal("expected to find some .gz files under GOROOT")
59 gz, err := NewReader(f)
64 defer gz.Close()
65 if !gz.ModTime.IsZero() {
66 t.Errorf("gzip file %s has non-zero mtime (%s)", path, gz.ModTime)
  /prebuilts/go/linux-x86/src/compress/gzip/
issue14937_test.go 12 // TestGZIPFilesHaveZeroMTimes checks that every .gz file in the tree
33 if !info.IsDir() && strings.HasSuffix(path, ".gz") {
42 t.Fatal("error collecting list of .gz files in GOROOT: ", err)
45 t.Fatal("expected to find some .gz files under GOROOT")
59 gz, err := NewReader(f)
64 defer gz.Close()
65 if !gz.ModTime.IsZero() {
66 t.Errorf("gzip file %s has non-zero mtime (%s)", path, gz.ModTime)
  /external/libexif/doc/
Makefile.am 32 DOXYGEN_TARBALLS += $(HTML_APIDOC_DIR).tar.gz
33 $(HTML_APIDOC_DIR).tar.gz: $(HTML_APIDOC_DIR).stamp
44 DOXYGEN_TARBALLS += $(HTML_APIDOC_INTERNALS_DIR).tar.gz
45 $(HTML_APIDOC_INTERNALS_DIR).tar.gz: $(HTML_APIDOC_INTERNALS_DIR).stamp
79 rm -f $(HTML_APIDOC_DIR).tar.gz $(HTML_APIDOC_INTERNALS_DIR).tar.gz
98 EXTRA_DIST = Doxyfile.in Doxyfile-internals.in footer.html README.apidocs $(HTML_APIDOC_DIR).tar.gz

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 910