/third_party/toybox/tests/ |
D | 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 20 testing "no files (stdin to stdout)" "cat f.gz | gunzip > f && 21 test -f f.gz && cat f" "hello world\n" "" "" 22 rm -f f f.gz [all …]
|
D | 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" "" "" 21 rm -f f.gz 26 testing "with input files and -c" "gzip -c f1 f2 > out.gz && 27 ! test -f f1.gz && ! test -f f2.gz && 29 zcat out.gz" "foo bar\n" "" "" [all …]
|
D | zcat.test | 7 echo -n "hi " | gzip > 1.gz 8 echo "there" | gzip > 2.gz 11 testcmd "files" "1.gz 2.gz && test -f 1.gz && test -f 2.gz" "hi there\n" "" "" 13 testcmd "-c" "-c 1.gz 2.gz && test -f 1.gz && test -f 2.gz" "hi there\n" "" "" 14 testing "concatenated" "{ cat 1.gz 2.gz; } | zcat" "hi there\n" "" "" 15 testing "error" "head -c 10 2.gz | { zcat 2>/dev/null || echo fail; }" "fail\n"\ 20 rm -f 1 2 1.gz 2.gz
|
D | sort.test | 102 testing "" "sort -V" "toy-2.37.tar.gz\ntoy-3.4.tar.gz\ntoy-3.12.tar.gz\ntoy-4.16-rc2.tar.gz\ntoy-4.… 103 "toy-3.12.tar.gz\ntoy-2.37.tar.gz\ntoy-3.4.tar.gz\ntoy-4.16-rc2.tar.gz\ntoy-4.16.tar.gz"
|
/third_party/zlib/test/ |
D | 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 …]
|
/third_party/libwebsockets/contrib/abi/ |
D | libwebsockets.json | 20 "Source": "src/libwebsockets/3.0.0/libwebsockets-3.0.0.tar.gz", 30 "Source": "src/libwebsockets/2.4.2/libwebsockets-2.4.2.tar.gz", 40 "Source": "src/libwebsockets/2.4.1/libwebsockets-2.4.1.tar.gz", 50 "Source": "src/libwebsockets/2.4.0/libwebsockets-2.4.0.tar.gz", 60 "Source": "src/libwebsockets/2.3.0/libwebsockets-2.3.0.tar.gz", 70 "Source": "src/libwebsockets/2.2.2/libwebsockets-2.2.2.tar.gz", 80 "Source": "src/libwebsockets/2.2.1/libwebsockets-2.2.1.tar.gz", 90 "Source": "src/libwebsockets/2.2.0/libwebsockets-2.2.0.tar.gz", 100 "Source": "src/libwebsockets/2.1.1/libwebsockets-2.1.1.tar.gz", 110 "Source": "src/libwebsockets/2.1.0/libwebsockets-2.1.0.tar.gz", [all …]
|
/third_party/zlib/examples/ |
D | gzappend.c | 266 file gz; in gzscan() local 269 gz.name = name; in gzscan() 270 gz.fd = open(name, O_RDWR, 0); in gzscan() 271 if (gz.fd == -1) bye("cannot open ", name); in gzscan() 272 gz.buf = malloc(CHUNK); in gzscan() 273 if (gz.buf == NULL) bye("out of memory", ""); in gzscan() 274 gz.size = LGCHUNK; in gzscan() 275 gz.left = 0; in gzscan() 278 gzheader(&gz); in gzscan() 291 lastoff = lseek(gz.fd, 0L, SEEK_CUR) - gz.left; in gzscan() [all …]
|
/third_party/toybox/toys/lsb/ |
D | gzip.c | 23 files with the .gz suffix. 39 files without the .gz suffix. 73 gzFile gz; local 79 if (!(gz = gzdopen(dd ? in_fd : out_fd, b))) perror_exit("gzdopen"); 81 if (gzdirect(gz)) error_exit("not gzip"); 82 while ((len = gzread(gz, toybuf, sizeof(toybuf))) > 0) 86 if (len != gzwrite(gz, toybuf, len)) break; 92 error_msg("%s%s: %s", "gz", dd ? "read" : "write", gzerror(gz, &len)); 94 if (gzclose(gz) != Z_OK) perror_msg("gzclose"), err++; 128 // Are we reading file.gz to write to file? in do_gzip() [all …]
|
/third_party/nghttp2/ |
D | Dockerfile.android | 52 RUN curl -L -O https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz && \ 53 tar xf openssl-$OPENSSL_VERSION.tar.gz && \ 54 rm openssl-$OPENSSL_VERSION.tar.gz 62 RUN curl -L -O http://dist.schmorp.de/libev/Attic/libev-$LIBEV_VERSION.tar.gz && \ 63 tar xf libev-$LIBEV_VERSION.tar.gz && \ 64 rm libev-$LIBEV_VERSION.tar.gz 78 RUN curl -L -O https://zlib.net/zlib-$ZLIB_VERSION.tar.gz && \ 79 tar xf zlib-$ZLIB_VERSION.tar.gz && \ 80 rm zlib-$ZLIB_VERSION.tar.gz 93 RUN curl -L -O https://c-ares.haxx.se/download/c-ares-$CARES_VERSION.tar.gz && \ [all …]
|
/third_party/zlib/contrib/iostream3/ |
D | test.cc | 17 outf.open("test1.txt.gz"); in main() 21 std::cout << "Wrote the following message to 'test1.txt.gz' (check with zcat or zless):\n" in main() 25 std::cout << "\nReading 'test1.txt.gz' (buffered) produces:\n"; in main() 26 inf.open("test1.txt.gz"); in main() 33 outf.open("test2.txt.gz"); in main() 38 std::cout << "\nWrote the same message to 'test2.txt.gz' in uncompressed form"; in main() 40 std::cout << "\nReading 'test2.txt.gz' (unbuffered) produces:\n"; in main() 42 inf.open("test2.txt.gz"); in main()
|
/third_party/protobuf/ |
D | protobuf_deps.bzl | 13 ….bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz", 14 … "https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz", 24 urls = ["https://github.com/madler/zlib/archive/v1.2.11.tar.gz"], 32 urls = ["https://pypi.python.org/packages/source/s/six/six-1.12.0.tar.gz"], 40 …["https://github.com/bazelbuild/rules_cc/archive/818289e5613731ae410efb54218a4077fb9dbb03.tar.gz"], 48 …https://github.com/bazelbuild/rules_java/archive/981f06c3d2bd10225e85209904090eb7b5fb26bd.tar.gz"], 56 …ttps://github.com/bazelbuild/rules_proto/archive/97d8af4dc474595af3900dd85cb3a29ad28cc313.tar.gz"], 64 …tps://github.com/bazelbuild/rules_python/archive/4b84ad270387a7c439ebdccfd530e2339601ef27.tar.gz"],
|
D | 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
|
/third_party/node/deps/npm/node_modules/node-gyp/test/ |
D | test-process-release.js | 18 tarballUrl: 'https://nodejs.org/dist/v0.8.20/node-v0.8.20.tar.gz', 39 tarballUrl: 'https://nodejs.org/dist/v0.10.21/node-v0.10.21.tar.gz', 48 // prior to -headers.tar.gz 61 tarballUrl: 'https://nodejs.org/dist/v0.12.9/node-v0.12.9.tar.gz', 70 // prior to -headers.tar.gz 83 tarballUrl: 'https://nodejs.org/dist/v0.10.41/node-v0.10.41.tar.gz', 92 // has -headers.tar.gz 105 tarballUrl: 'https://nodejs.org/dist/v0.10.42/node-v0.10.42-headers.tar.gz', 114 // has -headers.tar.gz 127 tarballUrl: 'https://nodejs.org/dist/v0.12.10/node-v0.12.10-headers.tar.gz', [all …]
|
/third_party/cups/ |
D | cups.spec | 24 …0: https://github.com/OpenPrinting/cups/releases/download/v%{version}/cups-%{version}-source.tar.gz 263 --slave %{_mandir}/man1/cancel.1.gz print-cancelman %{_mandir}/man1/cancel-cups.1.gz \ 264 --slave %{_mandir}/man1/lp.1.gz print-lpman %{_mandir}/man1/lp-cups.1.gz \ 265 --slave %{_mandir}/man8/lpc.8.gz print-lpcman %{_mandir}/man8/lpc-cups.8.gz \ 266 --slave %{_mandir}/man1/lpq.1.gz print-lpqman %{_mandir}/man1/lpq-cups.1.gz \ 267 --slave %{_mandir}/man1/lpr.1.gz print-lprman %{_mandir}/man1/lpr-cups.1.gz \ 268 --slave %{_mandir}/man1/lprm.1.gz print-lprmman %{_mandir}/man1/lprm-cups.1.gz \ 269 --slave %{_mandir}/man1/lpstat.1.gz print-lpstatman %{_mandir}/man1/lpstat-cups.1.gz || : 355 %exclude %{_mandir}/man1/lp*.1.gz 356 %exclude %{_mandir}/man1/cancel-cups.1.gz [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
D | vktImageAtomicSpirvShaders.cpp | 52 ; int gz = int(gl_GlobalInvocationID.z); 53 ; imageAtomicAdd(u_resultImage, gx % 64, uint(gx*gx + gy*gy + gz*gz)); 142 ; int gz = int(gl_GlobalInvocationID.z); 143 …intermValuesImage, gx, uvec4(imageAtomicAdd(u_resultImage, gx % 64, uint(gx*gx + gy*gy + gz*gz)))); 240 ; int gz = int(gl_GlobalInvocationID.z); 241 ; imageAtomicAdd(u_resultImage, gx % 64, int(gx*gx + gy*gy + gz*gz)); 329 ; int gz = int(gl_GlobalInvocationID.z); 330 …_intermValuesImage, gx, ivec4(imageAtomicAdd(u_resultImage, gx % 64, int(gx*gx + gy*gy + gz*gz)))); 426 ; int gz = int(gl_GlobalInvocationID.z); 427 ; imageAtomicAdd(u_resultImage, ivec2(gx % 64,gy), uint(gx*gx + gy*gy + gz*gz)); [all …]
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
D | readme.txt | 12 Note: this directory currently contains tzcode as of tzcode2014b.tar.gz 13 with localtime.c patches from tzcode2014b.tar.gz 54 tzcode2014b.tar.gz 172 KB 3/25/2014 05:11:00 AM 55 tzdata2014b.tar.gz 216 KB 3/25/2014 05:11:00 AM 57 ICU only uses the tzdataYYYYV.tar.gz files, 67 1. Obtain the current versions of tzdataYYYYV.tar.gz (aka `tzdata') from 71 $ wget "ftp://ftp.iana.org/tz/releases/tzdata*.tar.gz" 73 2. Copy only one tzdata*.tar.gz file into the icu/source/tools/tzcode/ 76 *** Make sure you only have ONE FILE named tzdata*.tar.gz in the 83 4. Obtain the current version of tzcodeYYYY.tar.gz from the FTP site to
|
D | Makefile.in | 15 TZDATA = $(firstword $(wildcard ./tzdata*.tar.gz) $(wildcard $(srcdir)/tzdata*.tar.gz)) 18 TZCODE = $(firstword $(wildcard ./tzcode*.tar.gz) $(wildcard $(srcdir)/tzcode*.tar.gz)) 65 @echo ERROR "tzdata*.tar.gz" can\'t be found. 76 @echo ERROR "tzcode*.tar.gz" can\'t be found. 83 @echo ERROR "tzdata*.tar.gz" can\'t be found. 155 $(TZ2ICUEXEC) $(TZDIR) zone.tab `echo $(TZDATA) | sed -e "s/.*\/tzdata//;s/\.tar\.gz$$//"` 156 $(TZ2ICUEXEC) $(TZDIR) zone.tab `echo $(TZDATA) | sed -e "s/.*\/tzdata//;s/\.tar\.gz$$//"` --old
|
/third_party/flutter/skia/third_party/externals/icu/source/tools/tzcode/ |
D | readme.txt | 12 Note: this directory currently contains tzcode as of tzcode2014b.tar.gz 13 with localtime.c patches from tzcode2014b.tar.gz 54 tzcode2014b.tar.gz 172 KB 3/25/2014 05:11:00 AM 55 tzdata2014b.tar.gz 216 KB 3/25/2014 05:11:00 AM 57 ICU only uses the tzdataYYYYV.tar.gz files, 67 1. Obtain the current versions of tzdataYYYYV.tar.gz (aka `tzdata') from 71 $ wget "ftp://ftp.iana.org/tz/releases/tzdata*.tar.gz" 73 2. Copy only one tzdata*.tar.gz file into the icu/source/tools/tzcode/ 76 *** Make sure you only have ONE FILE named tzdata*.tar.gz in the 83 4. Obtain the current version of tzcodeYYYY.tar.gz from the FTP site to
|
D | Makefile.in | 15 TZDATA = $(firstword $(wildcard ./tzdata*.tar.gz) $(wildcard $(srcdir)/tzdata*.tar.gz)) 18 TZCODE = $(firstword $(wildcard ./tzcode*.tar.gz) $(wildcard $(srcdir)/tzcode*.tar.gz)) 46 @echo ERROR "tzdata*.tar.gz" can\'t be found. 57 @echo ERROR "tzcode*.tar.gz" can\'t be found. 64 @echo ERROR "tzdata*.tar.gz" can\'t be found. 149 $(TZ2ICUEXEC) $(TZDIR) zone.tab `echo $(TZDATA) | sed -e "s/.*\/tzdata//;s/\.tar\.gz$$//"` 150 $(TZ2ICUEXEC) $(TZDIR) zone.tab `echo $(TZDATA) | sed -e "s/.*\/tzdata//;s/\.tar\.gz$$//"` --old
|
/third_party/icu/icu4c/source/tools/tzcode/ |
D | readme.txt | 12 Note: this directory currently contains tzcode as of tzcode2014b.tar.gz 13 with localtime.c patches from tzcode2014b.tar.gz 54 tzcode2014b.tar.gz 172 KB 3/25/2014 05:11:00 AM 55 tzdata2014b.tar.gz 216 KB 3/25/2014 05:11:00 AM 57 ICU only uses the tzdataYYYYV.tar.gz files, 67 1. Obtain the current versions of tzdataYYYYV.tar.gz (aka `tzdata') from 71 $ wget "ftp://ftp.iana.org/tz/releases/tzdata*.tar.gz" 73 2. Copy only one tzdata*.tar.gz file into the icu/source/tools/tzcode/ 76 *** Make sure you only have ONE FILE named tzdata*.tar.gz in the 83 4. Obtain the current version of tzcodeYYYY.tar.gz from the FTP site to
|
D | Makefile.in | 15 TZDATA = $(firstword $(wildcard ./tzdata*.tar.gz) $(wildcard $(srcdir)/tzdata*.tar.gz)) 18 TZCODE = $(firstword $(wildcard ./tzcode*.tar.gz) $(wildcard $(srcdir)/tzcode*.tar.gz)) 65 @echo ERROR "tzdata*.tar.gz" can\'t be found. 76 @echo ERROR "tzcode*.tar.gz" can\'t be found. 83 @echo ERROR "tzdata*.tar.gz" can\'t be found. 155 $(TZ2ICUEXEC) $(TZDIR) zone.tab `echo $(TZDATA) | sed -e "s/.*\/tzdata//;s/\.tar\.gz$$//"` 156 $(TZ2ICUEXEC) $(TZDIR) zone.tab `echo $(TZDATA) | sed -e "s/.*\/tzdata//;s/\.tar\.gz$$//"` --old
|
/third_party/node/test/parallel/ |
D | test-zlib-zero-byte.js | 28 const gz = Compressor(); constant 31 gz.on('data', function(c) { 35 gz.on('end', common.mustCall(function() { 40 gz.on('finish', common.mustCall()); 41 gz.write(emptyBuffer); 42 gz.end();
|
/third_party/mesa3d/.gitlab-ci/bare-metal/ |
D | fastboot.sh | 35 echo "Must set BM_KERNEL to your board's kernel vmlinuz or Image.gz in the job's variables:" 67 rm -f rootfs.cpio.gz 90 xz --check=crc32 -T4 - > $CI_PROJECT_DIR/rootfs.cpio.gz 108 cat kernel dtb > Image.gz-dtb 111 cat $BM_KERNEL $BM_DTB > Image.gz-dtb 117 -k Image.gz-dtb \ 118 -r rootfs.cpio.gz \ 120 rm Image.gz-dtb
|
/third_party/bzip2/ |
D | bzip2.spec | 8 Source0: https://sourceware.org/pub/bzip2/%{name}-%{version}.tar.gz 74 ln -s bzip2.1.gz %{buildroot}%{_mandir}/man1/bunzip2.1.gz 75 ln -s bzip2.1.gz %{buildroot}%{_mandir}/man1/bzcat.1.gz 76 ln -s bzip2.1.gz %{buildroot}%{_mandir}/man1/bzip2recover.1.gz 99 %{_mandir}/man1/b*.1.gz
|
/third_party/iptables/ |
D | iptables.spec | 200 if [ "$(readlink -e $manpfx.8.gz)" == $manpfx.8.gz ]; then 201 rm -f $manpfx.8.gz 207 --slave $manpfx.8.gz ebtables-man $manpfx-nft.8.gz 216 if [ "$(readlink -e $manpfx$sfx.8.gz)" == $manpfx$sfx.8.gz ]; then 217 rm -f $manpfx$sfx.8.gz 227 --slave $manpfx.8.gz arptables-man $manpfx-nft.8.gz \ 228 --slave $manpfx-save.8.gz arptables-save-man $manpfx-nft-save.8.gz \ 229 --slave $manpfx-restore.8.gz arptables-restore-man $manpfx-nft-restore.8.gz \ 318 %ghost %{_mandir}/man8/arptables.8.gz 319 %ghost %{_mandir}/man8/arptables-save.8.gz [all …]
|