HomeSort by: relevance | last modified time | path
    Searched refs:gz (Results 1 - 25 of 230) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/mit/xorg/share/fonts/encodings/
Makefile 8 GZFILES=adobe-dingbats.enc.gz adobe-standard.enc.gz adobe-symbol.enc.gz \
9 armscii-8.enc.gz ascii-0.enc.gz dec-special.enc.gz \
10 ibm-cp437.enc.gz ibm-cp850.enc.gz ibm-cp852.enc.gz ibm-cp866.enc.gz \
    [all...]
  /src/external/mit/xorg/share/fonts/encodings/large/
Makefile 7 GZFILES= big5.eten-0.enc.gz big5hkscs-0.enc.gz \
8 cns11643-1.enc.gz cns11643-2.enc.gz cns11643-3.enc.gz \
9 gb18030-0.enc.gz gb18030.2000-0.enc.gz gb18030.2000-1.enc.gz gb2312.1980-0.enc.gz \
10 gbk-0.enc.gz \
    [all...]
  /src/distrib/i386/floppies/bootfloppy/
Makefile 4 FLOPPYKERNEL= netbsd-INSTALL.gz
  /src/sys/arch/mmeye/stand/boot/
deflate.sh 9 ${TOOL_AWK} '{ printf "%c", int($0); }' > ${kernel}.gz
11 gzip -nc ${kernel} | dd bs=10 skip=1 of=${kernel}.gz.tmp
12 SIZE=`ls -l ${kernel}.gz.tmp | cut -d ' ' -f 8`
13 dd if=${kernel}.gz.tmp bs=`expr $SIZE - 8` count=1 >> ${kernel}.gz
14 rm ${kernel}.gz.tmp
24 >> ${kernel}.gz
  /src/external/bsd/zstd/dist/tests/gzip/
trailing-nul.sh 23 (echo 0 | gzip; printf '\0') > 0.gz || framework_failure_
24 (echo 00 | gzip; printf '\0\0') > 00.gz || framework_failure_
25 (echo 1 | gzip; printf '\1') > 1.gz || framework_failure_
30 gzip -d $i.gz; ret=$?
zgrep-signal.sh 23 echo a | gzip -c > f.gz || framework_failure_
54 write_to_dangling_pipe cat f.gz f.gz
61 write_to_dangling_pipe zgrep a f.gz f.gz
helin-segv.sh 23 printf '\037\235\220\0\0\0\304' > helin.gz || framework_failure_
28 gzip -dc helin.gz > out || fail=1
memcpy-abuse.sh 25 printf wxy%032767d 0 | tee in | gzip > in.gz || framework_failure_
30 gzip -dc in.gz > out || fail=1
  /src/distrib/i386/floppies/bootfloppy-big/
Makefile 19 FLOPPYKERNEL= netbsd-INSTALL_FLOPPY.gz
  /src/distrib/i386/floppies/bootfloppy-ps2/
Makefile 4 FLOPPYKERNEL= netbsd-INSTALL_PS2.gz
  /src/distrib/i386/floppies/bootfloppy-small/
Makefile 6 FLOPPYKERNEL= netbsd-INSTALL_SMALL.gz
  /src/distrib/i386/floppies/bootfloppy-tiny/
Makefile 5 FLOPPYKERNEL= netbsd-INSTALL_TINY.gz
  /src/distrib/i386/floppies/rescue-tiny/
Makefile 4 FLOPPYKERNEL= netbsd-RESCUE_TINY.gz
  /src/external/bsd/zstd/dist/tests/cli-tests/compression/
gzip-compat.sh 10 $ZSTD_SYMLINK_DIR/gzip --fast file ; $ZSTD_SYMLINK_DIR/gzip -d file.gz
11 $ZSTD_SYMLINK_DIR/gzip --best file ; $ZSTD_SYMLINK_DIR/gzip -d file.gz
14 $ZSTD_SYMLINK_DIR/gzip -n file ; grep -qv file file.gz ; $ZSTD_SYMLINK_DIR/gzip -d file.gz
15 $ZSTD_SYMLINK_DIR/gzip --no-name file ; grep -qv file file.gz ; $ZSTD_SYMLINK_DIR/gzip -d file.gz
  /src/external/mit/xorg/share/fonts/cyrillic/font-cronyx-cyrillic/
Makefile 56 crox5ho.pcf.gz \
57 crox5t.pcf.gz \
58 crox5tb.pcf.gz \
59 crox5tbo.pcf.gz \
60 crox5to.pcf.gz \
61 crox6h.pcf.gz \
62 crox6hb.pcf.gz \
63 crox6hbo.pcf.gz \
64 crox6ho.pcf.gz \
65 crox6t.pcf.gz \
    [all...]
  /src/distrib/rs6000/bootfs/
Makefile 12 KERNEL= ${KERNDIR}/netbsd-INSTALL.gz
18 ${IMAGE}.gz: ${KERNEL} ${BOOTLOADER}
25 CLEANFILES+= ${IMAGE} ${IMAGE}.tmp ${IMAGE}.gz
27 all realall: ${IMAGE}.gz
29 release:: check_RELEASEDIR .WAIT ${IMAGE}.gz
30 ${RELEASE_INSTALL} ${IMAGE}.gz \
  /src/distrib/emips/cdroms/installcd/
Makefile 5 CDKERNELS= netbsd-INSTALL.gz netbsd
  /src/distrib/ews4800mips/floppies/instkernel/
Makefile 18 all realall: ${BOOT_RAMDISK}.gz
20 ${BOOT_RAMDISK}.gz: netbsd-RAMDISK.gz ${DESTDIR}/usr/mdec/boot_kernel.gz
22 gunzip -c ${DESTDIR}/usr/mdec/boot_kernel.gz > ${BOOT_RAMDISK}.tmp
23 ${TOOL_MDSETIMAGE} -v ${BOOT_RAMDISK}.tmp netbsd-RAMDISK.gz
27 CLEANFILES+= ${BOOT_RAMDISK}.tmp ${BOOT_RAMDISK}.coff ${BOOT_RAMDISK}.gz
29 release:: check_RELEASEDIR .WAIT ${BOOT_RAMDISK}.gz
30 ${RELEASE_INSTALL} ${BOOT_RAMDISK}.gz \
  /src/distrib/i386/floppies/bootfloppy-com/
Makefile 4 FLOPPYKERNEL= netbsd-INSTALL.gz
  /src/distrib/macppc/floppies/bootfloppy/
Makefile 3 FLOPPY_NETBSD= ${KERNOBJ}/netbsd-INSTALL.gz
  /src/distrib/macppc/floppies/bootfloppy-601/
Makefile 3 FLOPPY_NETBSD= ${KERNOBJ}/netbsd-INSTALL_601.gz
  /src/sbin/savecore/
zopen.c 33 gzFile gz = gzopen(fname, mode); local
34 if(gz == NULL)
38 return funopen(gz, xgzread, NULL, NULL, (int (*)(void *))gzclose);
40 return funopen(gz, NULL, xgzwrite, NULL, (int (*)(void *))gzclose);
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
mkdist 8 tar --exclude CVS -cvzf $HOME/${name}.tar.gz ${name} &&
9 ls -al $HOME/${name}.tar.gz &&
  /src/external/bsd/byacc/dist/package/debian/
byacc2.postinst 9 --slave /usr/share/man/man1/yacc.1.gz yaccman \
10 /usr/share/man/man1/byacc2.1.gz
  /src/distrib/macppc/cdroms/installcd/
Makefile 8 CDKERNELS= netbsd-INSTALL.gz netbsd
9 CDKERNELS+= netbsd-INSTALL_601.gz netbsd.601

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 910