HomeSort by: relevance | last modified time | path
    Searched refs:lz4 (Results 1 - 13 of 13) sorted by relevancy

  /src/external/bsd/zstd/dist/tests/
Makefile 442 test-lz4: ZSTD = LD_LIBRARY_PATH=/usr/local/lib $(PRGDIR)/zstd
443 test-lz4: ZSTD_LZ4 = LD_LIBRARY_PATH=/usr/local/lib ./lz4
444 test-lz4: ZSTD_UNLZ4 = LD_LIBRARY_PATH=/usr/local/lib ./unlz4
445 test-lz4: zstd decodecorpus datagen
446 [ -f lz4 ] || ln -s $(PRGDIR)/zstd lz4
450 # lz4 -> zstd
451 lz4 < tmp | \
454 lz4 < tmp |
    [all...]
playTests.sh 1434 println "\n===> lz4 compatibility tests "
1437 zstd --format=lz4 -V || LZ4MODE=0
1439 println "lz4 support detected"
1441 lz4 -V || LZ4EXE=0
1444 zstd --format=lz4 -f tmp
1445 lz4 -t -v tmp.lz4
1446 lz4 -f -m tmp # ensure result is sent into tmp.lz4, not stdout
1447 zstd -d -f -v tmp.lz4
    [all...]
  /src/tests/lib/libarchive/
Makefile 350 test_compat_lz4_1.tar.lz4.uu \
351 test_compat_lz4_2.tar.lz4.uu \
352 test_compat_lz4_3.tar.lz4.uu \
353 test_compat_lz4_B4.tar.lz4.uu \
354 test_compat_lz4_B4BD.tar.lz4.uu \
355 test_compat_lz4_B4BDBX.tar.lz4.uu \
356 test_compat_lz4_B5.tar.lz4.uu \
357 test_compat_lz4_B5BD.tar.lz4.uu \
358 test_compat_lz4_B6.tar.lz4.uu \
359 test_compat_lz4_B6BD.tar.lz4.uu
    [all...]
  /src/external/cddl/osnet/dist/uts/common/
Makefile.files 68 lz4.o \
  /src/external/bsd/zstd/dist/
Makefile 148 $(Q)$(RM) -r lz4 cmakebuild install
386 # Ubuntu 14.04 ships a too-old lz4
388 [ -e lz4 ] || git clone https://github.com/lz4/lz4 && sudo $(MAKE) -C lz4 install
  /src/tests/usr.bin/cpio/
Makefile 87 test_extract.cpio.lz4.uu \
  /src/tests/usr.bin/tar/
Makefile 100 test_extract.tar.lz4.uu \
  /src/external/bsd/zstd/dist/programs/
Makefile 98 # lz4 detection
99 NO_LZ4_MSG := ==> no liblz4, building zstd without .lz4 support
100 HAVE_LZ4 ?= $(shell printf '$(NUM_SYMBOL)include <lz4frame.h>\n$(NUM_SYMBOL)include <lz4.h>\nint main(void) { return 0; }' > have_lz4.c && $(CC) $(FLAGS) -o have_lz4$(EXT) have_lz4.c -llz4 2> $(VOID) && rm have_lz4$(EXT) && echo 1 || echo 0; rm have_lz4.c)
102 LZ4_MSG := ==> building zstd with .lz4 compression support
fileio.c 70 # include <lz4.h>
1412 EXM_THROW(31, "zstd: failed to create lz4 compression context");
1418 /* autoflush off to mitigate a bug in lz4<=1.9.3 for compression level 12 */
1447 EXM_THROW(35, "zstd: %s: lz4 compression failed : %s",
1472 EXM_THROW(38, "zstd: %s: lz4 end of file generation failed : %s",
1780 EXM_THROW(20, "zstd: %s: file cannot be compressed as lz4 (zstd compiled without ZSTD_LZ4COMPRESS) -- ignored \n",
2662 DISPLAYLEVEL(1, "zstd: failed to create lz4 decompression context \n");
2685 DISPLAYLEVEL(1, "zstd: %s: lz4 decompression error : %s \n",
2708 DISPLAYLEVEL(1, "zstd: %s: unfinished lz4 stream \n", srcFileName);
2796 DISPLAYLEVEL(1, "zstd: %s: lz4 file cannot be uncompressed (zstd compiled without HAVE_LZ4) -- ignored \n", srcFileName)
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_version_details.c 45 #include <lz4.h>
archive_util.c 68 #include <lz4.h>
archive_read_support_filter_lz4.c 42 #include <lz4.h>
54 // Note: LZ4 and zstd share the same skippable frame format with the same magic numbers.
90 /* Lz4 filter */
96 * Note that we can detect lz4 archives even if we can't decompress
121 if (__archive_read_register_bidder(a, NULL, "lz4",
129 "Using external lz4 program");
150 // LZ4 skippable frames contain a 4 byte magic number followed by
161 // Zstd and LZ4 skippable frame magic numbers are identical. To
165 // Minimal lz4 archive is 11 bytes.
188 // There should be at least one more frame if this is LZ4 data
    [all...]
archive_write_add_filter_lz4.c 39 #include <lz4.h>
91 * Add a lz4 compression filter to this write handle.
130 f->name = "lz4";
135 * We don't have lz4 library, and execute external lz4 program
138 data->pdata = __archive_write_program_allocate("lz4");
146 "Using external lz4 program");
646 archive_strcpy(&as, "lz4 -z -q -q");

Completed in 70 milliseconds