Home
last modified time | relevance | path

Searched refs:gzip (Results 1 – 25 of 158) sorted by relevance

1234567

/freebsd/usr.bin/gzip/
H A DMakefile5 PROG= gzip
6 MAN= gzip.1 gzexe.1 zdiff.1 zforce.1 zmore.1 znew.1
20 MLINKS+= gzip.1 gunzip.1 \
21 gzip.1 gzcat.1 \
22 gzip.1 zcat.1 \
27 LINKS+= ${BINDIR}/gzip ${BINDIR}/gunzip \
28 ${BINDIR}/gzip ${BINDIR}/gzcat \
29 ${BINDIR}/gzip ${BINDIR}/zcat \
H A Dgzexe43 /usr/bin/gzip -dc > "$tmp/$prog" 2> /dev/null; then
71 if ! tail +$lines "$tmp" | gzip -vdc > "$1"; then
92 sh | mktemp | rm | echo | tail | gzip | chmod)
129 if header "$1" > "$tmp" && gzip -vc "$1" >> "$tmp"; then
H A Dzmore53 gzip -cdfq 2>&1 | $pager $flags
59 gzip -cdfq "$1" 2>&1 | $pager $flags
H A Dznew32 gzip -qt < "$1"
62 if uncompress -f -c < "$filez" | gzip -f -c $gzipflags > "$tmp"; then
/freebsd/contrib/netbsd-tests/usr.bin/gzip/
H A Dt_gzip.sh35 echo -n "aaaa" | gzip > tmp.gz
36 echo -n "bbbb" | gzip >> tmp.gz
38 atf_check -o inline:"aaaabbbb" gzip -d tmp.gz -c
66 atf_check -s ne:0 -e ignore gzip -d truncated.gz
83 atf_check -s ne:0 -e ignore gzip -d crcerror.gz
100 atf_check gzip -d good.gz
/freebsd/usr.sbin/crunch/examples/
H A Dfilesystem.conf22 progs cpio gzip
23 ln gzip gunzip
24 ln gzip gzcat
25 ln gzip zcat
H A Dfixit.conf38 progs cpio gzip
39 ln gzip gunzip
40 ln gzip gzcat
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_002_pos.ksh87 compression gzip compression gzip-$((RANDOM%9 + 1))
115 compression gzip compression gzip-$((RANDOM%9 + 1))
144 compression gzip compression gzip-$((RANDOM%9 + 1))
/freebsd/crypto/openssh/contrib/cygwin/
H A DMakefile70 gzip-man-pages:
72 gzip $(DESTDIR)$(mandir)/man1/*.1
73 gzip $(DESTDIR)$(mandir)/man5/*.5
74 gzip $(DESTDIR)$(mandir)/man8/*.8
77 …es remove-empty-dir install-inetd-config install-doc install-scripts install-copy-id gzip-man-pages
/freebsd/contrib/mandoc/
H A Dread.c62 int gzip; /* current input file is gzipped */ member
460 if (curp->gzip == 0 && S_ISREG(st.st_mode)) { in read_whole_file()
472 if (curp->gzip) { in read_whole_file()
512 ssz = curp->gzip ? in read_whole_file()
521 if (curp->gzip) in read_whole_file()
524 curp->gzip && gzerrnum != Z_ERRNO ? in read_whole_file()
531 if (curp->gzip && (gzerrnum = gzclose(gz)) != Z_OK) in read_whole_file()
635 curp->gzip = (cp != NULL && ! strcmp(cp + 1, "gz")); in mparse_open()
647 if ( ! curp->gzip) { in mparse_open()
654 curp->gzip = 1; in mparse_open()
[all …]
/freebsd/sys/contrib/zlib/doc/
H A Drfc1952.txt83 7. Appendix: Jean-Loup Gailly's gzip utility .................. 11
107 widely used gzip utility, in that conforming decompressors
108 will be able to read data produced by the existing gzip
128 to compress data into gzip format and/or decompress data from gzip
161 There have been no technical changes to the gzip format since
233 A gzip file consists of a series of "members" (compressed data
292 (0x8b, \213), to identify the file as being in gzip format.
298 gzip and which is documented elsewhere.
325 If FHCRC is set, a CRC16 for the gzip header is present,
328 bytes of the gzip header up to and not including the CRC16.
[all …]
/freebsd/usr.bin/gzip/tests/
H A Dzdiff_test.sh51 atf_test_case gzip
54 prepare_files gzip tgz
121 atf_add_test_case gzip
/freebsd/usr.bin/patch/tests/
H A DPR74127-good.diff3 - set Log(compressProg) gzip
4 + set Log(compressProg) /usr/local/bin/gzip
H A DPR74127-repro.diff3 - set Log(compressProg) /usr/local/bin/gzip
4 + set Log(compressProg) /usr/bin/gzip
H A DPR74127-cline.diff3 - set Log(compressProg) /usr/local/bin/gzip
4 + set Log(compressProg) /usr/bin/gzip
/freebsd/sys/contrib/zlib/
H A DFAQ58 corresponding source to us at zlib@gzip.org . Do not send multi-megabyte
129 18. Why does gzip give an error on a file I make with compress/deflate?
132 is different and incompatible with the gzip format. The gz* functions in
133 zlib on the other hand use the gzip format. Both the zlib and gzip formats
139 The gzip format was designed to retain the directory information about a
143 faster integrity check than gzip.
145 20. Well that's nice, but how do I make a gzip file in memory?
147 You can request that deflate write the gzip format instead of the zlib
149 gzip format using inflateInit2(). Read zlib.h for more details.
159 Of course, you should only operate on any given zlib or gzip stream from a
[all …]
H A DREADME7 rfc1952 (gzip format).
10 (volunteer to write man pages welcome, contact zlib@gzip.org). A usage example
22 Questions about zlib should be sent to <zlib@gzip.org>, or to Gilles Vollant
105 jloup@gzip.org madler@alumni.caltech.edu
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_lrzip.c45 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression;
104 else if (strcmp(value, "gzip") == 0) in archive_write_lrzip_options()
105 data->compression = gzip; in archive_write_lrzip_options()
145 case gzip: in archive_write_lrzip_open()
47 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression; global() enumerator
/freebsd/sbin/dumpon/
H A Ddumpon.c467 bool gzip, list, netdump, zstd, insert, rflag; in main() local
473 gzip = list = netdump = zstd = insert = rflag = false; in main()
536 gzip = true; in main()
542 if (gzip && zstd) in main()
608 if (!netdump && !gzip && !zstd && !rflag) in main()
622 else if (gzip) in main()
672 if (error == EINVAL && (gzip || zstd)) { in main()
/freebsd/tools/test/stress2/misc/
H A Dfsck10.sh127 gzip < $diskimage > $backup
139 gzip < $backup > /tmp/fsck_ffs.core.diskimage.$tstamp
140 gzip < fsck_ffs.core > /tmp/fsck_ffs.core.$tstamp
H A Dfsck11.sh134 gzip < $diskimage > $backup
148 gzip < $backup > /tmp/fsck_ffs.core.diskimage.$tstamp
149 gzip < fsck_ffs.core > /tmp/fsck_ffs.core.$tstamp
/freebsd/contrib/file/magic/Magdir/
H A Dcompress5 # compress, gzip, pack, compact, huf, squeeze, crunch, freeze, yabba, etc.
19 # gzip (GNU zip, not to be confused with Info-ZIP or PKWARE zip archiver)
36 # to display gzip compressed (strength=100=2*50) before other (strength=50)?
61 >>10 default x gzip compressed data
62 !:mime application/gzip
63 >>>0 use gzip-info
84 >3 byte&0x18 >0 gzip compressed data
85 !:mime application/gzip
95 >>0 use gzip-info
98 # display information of gzip compressed files
[all …]
/freebsd/contrib/openbsm/
H A DMakefile.in211 DIST_TARGETS = dist-gzip
578 dist-gzip: distdir
579 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
605 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
623 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
633 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
812 dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
/freebsd/tests/sys/cddl/zfs/tests/history/
H A Dhistory_002_pos.ksh98 compression gzip compression gzip-$((RANDOM%9 + 1)) \
/freebsd/tools/tools/vt/fontcvt/
H A Dterminus.sh12 gzip -9nf terminus-u${R}.vfnt

1234567