| /freebsd/usr.bin/bzip2/ |
| H A D | Makefile | 1 PACKAGE= bzip2 3 BZ2DIR= ${SRCTOP}/contrib/bzip2 6 PROG= bzip2 13 LINKS= ${BINDIR}/bzip2 ${BINDIR}/bunzip2 14 LINKS+= ${BINDIR}/bzip2 ${BINDIR}/bzcat 15 MLINKS= bzip2.1 bunzip2.1 \ 16 bzip2.1 bzcat.1 \ 17 bzip2.1 bzip2recover.1 36 test: bzip2 ${TESTFILES} 38 ./bzip2 -1 < sample1.ref > sample1.rb2 [all …]
|
| /freebsd/contrib/bzip2/ |
| H A D | README | 2 This is the README for bzip2/libzip2. 6 This file is part of bzip2/libbzip2, a program and library for 9 bzip2/libbzip2 version 1.0.8 of 13 July 2019 20 manual page is available as bzip2.txt. 26 bzip2 and bzip2recover. Six self-tests are run. If the self-tests 55 bzip2-shared, a client of the shared library, is also built, but not 60 to gcc, resulting in a slowdown of 10%-20%, at least for bzip2. 76 on the master web site (https://sourceware.org/bzip2/). Look there. However 77 (FWIW), bzip2-1.0.X is very standard ANSI C and should compile 94 importance. To validate bzip2, I used a modified version of Mark [all …]
|
| H A D | README.COMPILATION.PROBLEMS | 2 This file is part of bzip2/libbzip2, a program and library for 5 bzip2/libbzip2 version 1.0.8 of 13 July 2019 15 bzip2 should compile without problems on the vast majority of 26 Early versions of bzip2 (0.1, 0.9.0, 0.9.5) compiled on a wide variety 46 version of bzip2 without large file support, which, for most 51 You can use the spewG.c program to generate huge files to test bzip2's 53 any compilation problems which affect bzip2 will also affect spewG.c,
|
| H A D | CHANGES | 2 This file is part of bzip2/libbzip2, a program and library for 5 bzip2/libbzip2 version 1.0.8 of 13 July 2019 29 Fixed a problem with error reporting in bzip2.c. This does not effect 44 bzip2.c, so the non-fixedness of them in previous versions has no 45 effect on reliability of bzip2.c. 57 bzip2.c. 68 bugfixes in the driver (bzip2.c). Changes pertaining to the 83 bzip2 --help now returns 0 110 functioning of the bzip2 program or library. Added a couple of casts 120 count the volume of data passing through it. bzip2.c [all …]
|
| H A D | FREEBSD-upgrade | 1 Julian Seward's bzip2 7 src/contrib/bzip2 BZIP2 v1_0_5 12 tar xvfz bzip2-1.0.4.tar.gz -X FREEBSD-Xlist 13 cd bzip2-1.0.4
|
| H A D | words3 | 24 bzip2.txt. For more detailed documentation, read the full manual. 28 You can also do "bzip2 --help" to see some helpful information. 29 "bzip2 -L" displays the software license.
|
| H A D | FREEBSD-Xlist | 11 *bzip2.1.preformatted 12 *bzip2.txt
|
| H A D | LICENSE | 4 This program, "bzip2", the associated library "libbzip2", and all 40 bzip2/libbzip2 version 1.0.8 of 13 July 2019
|
| /freebsd/contrib/netbsd-tests/usr.bin/bzip2/ |
| H A D | t_bzip2.sh | 36 bzip2 -1c $(atf_get_srcdir)/d_sample1.ref 38 bzip2 -2c $(atf_get_srcdir)/d_sample2.ref 40 bzip2 -3c $(atf_get_srcdir)/d_sample3.ref 42 bzip2 -dc $(atf_get_srcdir)/d_sample1.bz2 44 bzip2 -dc $(atf_get_srcdir)/d_sample2.bz2 46 bzip2 -dsc $(atf_get_srcdir)/d_sample3.bz2
|
| /freebsd/lib/libbz2/ |
| H A D | Makefile | 1 PACKAGE= bzip2 4 BZ2DIR= ${SRCTOP}/contrib/bzip2 18 bzip2.pc: bzip2.pc.in 27 PCFILES= bzip2.pc
|
| H A D | bzip2.pc.in | 7 Name: bzip2 name 8 Description: bzip2 compression library
|
| /freebsd/release/packages/ucl/ |
| H A D | newsyslog.ucl | 2 # newsyslog uses bzip2 to compress log files. 3 "bzip2" {
|
| H A D | bzip2-all.ucl | 4 bzip2 compresses data using the Burrows-Wheeler block sorting text compression
|
| /freebsd/usr.bin/bzip2recover/ |
| H A D | Makefile | 1 PACKAGE= bzip2 3 BZ2DIR= ${SRCTOP}/contrib/bzip2
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_write_add_filter_lrzip.c | 45 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression; 102 else if (strcmp(value, "bzip2") == 0) in archive_write_lrzip_options() 103 data->compression = bzip2; in archive_write_lrzip_options() 142 case bzip2: in archive_write_lrzip_open() 47 enum { lzma = 0, bzip2, gzip, lzo, none, zpaq } compression; global() enumerator
|
| H A D | archive_write_set_format_zip.c | 208 bz_stream bzip2; member 1349 memset(&zip->stream.bzip2, 0, sizeof(bz_stream)); in archive_write_zip_header() 1350 zip->stream.bzip2.next_out = (char*)zip->buf; in archive_write_zip_header() 1351 zip->stream.bzip2.avail_out = (unsigned int)zip->len_buf; in archive_write_zip_header() 1352 if (BZ2_bzCompressInit(&zip->stream.bzip2, zip->compression_level, 0, 0) != BZ_OK) { in archive_write_zip_header() 1641 zip->stream.bzip2.next_in = (char*)(uintptr_t)buff; in archive_write_zip_data() 1642 zip->stream.bzip2.avail_in = (unsigned int)s; in archive_write_zip_data() 1644 ret = BZ2_bzCompress(&zip->stream.bzip2, BZ_RUN); in archive_write_zip_data() 1647 if (zip->stream.bzip2.avail_out == 0) { in archive_write_zip_data() 1673 zip->stream.bzip2.next_out = (char*)zip->buf; in archive_write_zip_data() [all …]
|
| /freebsd/tests/sys/cddl/zfs/tests/txg_integrity/ |
| H A D | txg_integrity_test.sh | 103 bzip2 $TC_ARTIFACTS_DIR/$TESTFILE 107 bzip2 $TC_ARTIFACTS_DIR/pool
|
| /freebsd/tools/build/options/ |
| H A D | WITHOUT_BZIP2_SUPPORT | 1 Build some programs without optional bzip2 support.
|
| H A D | WITHOUT_BZIP2 | 1 Do not build contributed bzip2 software as a part of the base system.
|
| /freebsd/usr.bin/less/ |
| H A D | lesspipe.sh | 15 exec bzip2 -d -c "$1" 2>/dev/null
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | mercurial | 13 >4 string BZ (bzip2 compressed)
|
| H A D | llvm | 11 0 string llvc2 LLVM byte-codes, bzip2 compression
|
| /freebsd/stand/powerpc/boot1.chrp/ |
| H A D | Makefile | 37 bzip2 -f -d ${.TARGET}.bz2
|
| H A D | generate-hfs.sh | 54 bzip2 $OUTPUT_FILE
|
| /freebsd/release/powerpc/ |
| H A D | generate-hfs.sh | 55 bzip2 $OUTPUT_FILE
|