/third_party/lz4/programs/ |
D | Makefile | 34 LIBVER_SRC := $(LZ4DIR)/lz4.h 62 default: lz4-release 64 all: lz4 lz4c 70 lz4-exe.rc: lz4-exe.rc.in 79 lz4-exe.o: lz4-exe.rc 80 $(WINDRES) -i lz4-exe.rc -o lz4-exe.o 82 lz4: $(OBJFILES) lz4-exe.o target 85 lz4: $(OBJFILES) target 89 .PHONY: lz4-release 90 lz4-release: DEBUGFLAGS= [all …]
|
D | lz4.1.md | 1 lz4(1) -- lz4, unlz4, lz4cat - Compress or decompress .lz4 files 7 `lz4` [*OPTIONS*] [-|INPUT-FILE] <OUTPUT-FILE> 9 `unlz4` is equivalent to `lz4 -d` 11 `lz4cat` is equivalent to `lz4 -dcfm` 14 it is recommended to always use the name `lz4` with appropriate arguments 15 (`lz4 -d` or `lz4 -dc`) instead of the names `unlz4` and `lz4cat`. 21 `lz4` is an extremely fast lossless compression algorithm, 23 `lz4` offers compression speeds of 400 MB/s per core, linearly scalable with 27 The native file format is the `.lz4` format. 29 ### Difference between lz4 and gzip argument [all …]
|
/third_party/lz4/tests/ |
D | test_custom_block_sizes.sh | 4 LZ4=../lz4 24 cat $TMPFILE1.lz4 $TMPFILE2.lz4 > $TMPFILE.lz4 25 $CHECKFRAME -B$blocksize -b4 $TMPFILE.lz4 || failures="$failures $blocksize " 33 cat $TMPFILE1.lz4 $TMPFILE2.lz4 > $TMPFILE.lz4 34 $CHECKFRAME -B$blocksize -b5 $TMPFILE.lz4 || failures="$failures $blocksize " 42 cat $TMPFILE1.lz4 $TMPFILE2.lz4 > $TMPFILE.lz4 43 $CHECKFRAME -B$blocksize -b6 $TMPFILE.lz4 || failures="$failures $blocksize " 51 cat $TMPFILE1.lz4 $TMPFILE2.lz4 > $TMPFILE.lz4 52 $CHECKFRAME -B$blocksize -b7 $TMPFILE.lz4 || failures="$failures $blocksize " 60 cat $TMPFILE1.lz4 $TMPFILE2.lz4 > $TMPFILE.lz4 [all …]
|
D | Makefile | 48 LZ4 := $(PRGDIR)/lz4$(EXT) 64 lz4: target 70 lz4c unlz4 lz4cat: lz4 80 fullbench : lz4.o lz4hc.o lz4frame.o xxhash.o fullbench.c 97 fuzzer : lz4.o lz4hc.o xxhash.o fuzzer.c 100 frametest: lz4frame.o lz4.o lz4hc.o xxhash.o frametest.c 103 roundTripTest : lz4.o lz4hc.o xxhash.o roundTripTest.c 109 checkFrame : lz4frame.o lz4.o lz4hc.o xxhash.o checkFrame.c 112 decompress-partial: lz4.o decompress-partial.c 133 $(PYTHON) test-lz4-versions.py [all …]
|
D | test-lz4-versions.py | 97 for lz4 in glob.glob("*.lz4"): 98 os.remove(lz4) 107 for lz4 in lz4s: 108 print(lz4 + ' : ' + repr(os.path.getsize(lz4))) 114 for i, lz4 in enumerate(lz4s): 115 if not os.path.isfile(lz4): 121 if filecmp.cmp(lz4, lz4t): 123 print('{} == {}'.format(lz4, lz4t)) 127 for lz4 in lz4s: 128 print(lz4 + ' : ' + repr(os.path.getsize(lz4)) + ', ' + sha1_of_file(lz4)) [all …]
|
D | README.md | 7 - `fullbench` : Precisely measure speed for each lz4 inner functions 8 - `fuzzer` : Test tool, to check lz4 integrity on target platform 9 - `test-lz4-speed.py` : script for testing lz4 speed difference between commits 10 - `test-lz4-versions.py` : compatibility test between lz4 versions stored on Github 13 #### `test-lz4-versions.py` - script for testing lz4 interoperability between versions 15 This script creates `versionsTest` directory to which lz4 repository is cloned. 16 Then all taged (released) versions of lz4 are compiled. 17 In the following step interoperability between lz4 versions is checked. 20 #### `test-lz4-speed.py` - script for testing lz4 speed difference between commits 22 This script creates `speedTest` directory to which lz4 repository is cloned. [all …]
|
/third_party/lz4/build/ |
D | README.md | 6 The following projects are included with the lz4 distribution: 12 #### How to compile lz4 with Visual Studio 15 2. Download the latest version of lz4 from https://github.com/lz4/lz4/releases 17 4. Go to decompressed directory then to `build` then `VS2010` and open `lz4.sln` 21 8. If compilation will be fine a compiled executable will be in `build\VS2010\bin\x64_Release\lz4.e… 24 #### Projects available within lz4.sln 26 The Visual Studio solution file `lz4.sln` contains many projects that will be compiled to the 27 `build\VS2010\bin\$(Platform)_$(Configuration)` directory. For example `lz4` set to `x64` and 28 `Release` will be compiled to `build\VS2010\bin\x64_Release\lz4.exe`. The solution file contains the 31 - `lz4` : Command Line Utility, supporting gzip-like arguments [all …]
|
D | .gitignore | 14 # Fixup for lz4 project directories 15 !VS2010/lz4 16 !VS2017/lz4
|
/third_party/lz4/contrib/debian/ |
D | control | 10 Homepage: http://www.lz4.org/ 11 Vcs-Git: git://github.com/lz4/lz4.git 12 Vcs-Browser: https://github.com/lz4/lz4 17 Description: Extremely Fast Compression algorithm http://www.lz4.org 22 Description: Extremely Fast Compression algorithm http://www.lz4.org
|
D | copyright | 4 Source: https://github.com/lz4/lz4 9 The full text of license: https://github.com/lz4/lz4/blob/dev/lib/LICENSE
|
/third_party/lz4/ |
D | README.md | 18 …[API](https://github.com/lz4/lz4/blob/v1.8.3/lib/lz4frame.h#L481) and [CLI](https://github.com/lz4… 31 [travisDevBadge]: https://travis-ci.org/lz4/lz4.svg?branch=dev "Continuous Integration test suite" 32 [travisLink]: https://travis-ci.org/lz4/lz4 33 [AppveyorDevBadge]: https://ci.appveyor.com/api/projects/status/github/lz4/lz4?branch=dev&svg=true … 34 [AppveyorLink]: https://ci.appveyor.com/project/YannCollet/lz4-1lndh 94 vcpkg install lz4 116 many contributors have created versions of lz4 in multiple languages 120 [LZ4 Homepage]: http://www.lz4.org
|
D | Makefile | 42 default: lib-release lz4-release 48 allmost: lib lz4 55 .PHONY: lz4 lz4-release 56 lz4 : liblz4.a target 57 lz4-release : lib-release 58 lz4 lz4-release : target 60 @cp $(PRGDIR)/lz4$(EXT) . 82 @$(RM) lz4$(EXT) 123 $(MAKE) -C $(TESTDIR) test-lz4-essentials 198 CC=$(LIBCC) $(MAKE) -C $(TESTDIR) CFLAGS="$(CFLAGS)" lz4.o lz4hc.o lz4frame.o
|
D | README.OpenSource | 3 "Name": "lz4", 8 "Upstream URL": "https://github.com/lz4/lz4",
|
/third_party/lz4/ossfuzz/ |
D | travisoss.sh | 8 if [[ ! -d /tmp/ossfuzz/projects/lz4 ]] 17 …4/lz4.git@-b ${TRAVIS_BRANCH} https://github.com/lz4/lz4.git@" /tmp/ossfuzz/projects/lz4/Dockerfile 19 …T_BRANCH} https://github.com/${TRAVIS_PULL_REQUEST_SLUG}.git@" /tmp/ossfuzz/projects/lz4/Dockerfile 24 python infra/helper.py build_image --pull lz4 25 python infra/helper.py build_fuzzers lz4
|
/third_party/lz4/build/cmake/ |
D | CMakeLists.txt | 15 option(LZ4_BUILD_CLI "Build lz4 program" ON) 19 file(STRINGS "${LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_MAJOR REGEX "^#define LZ4_VERSION_MAJOR … 21 file(STRINGS "${LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_MINOR REGEX "^#define LZ4_VERSION_MINOR … 23 file(STRINGS "${LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_RELEASE REGEX "^#define LZ4_VERSION_RELE… 42 # set it to OFF in your project before you add_subdirectory(lz4/contrib/cmake_unofficial). 84 "${LZ4_LIB_SOURCE_DIR}/lz4.c" 86 "${LZ4_LIB_SOURCE_DIR}/lz4.h" 107 OUTPUT_NAME lz4 119 OUTPUT_NAME lz4 131 # lz4 [all …]
|
/third_party/lz4/contrib/gen_manual/ |
D | gen-lz4-manual.sh | 3 …SCRIPT=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ../../lib/lz4.h` 4 …SCRIPT=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ../../lib/lz4.h` 5 …RIPT=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ../../lib/lz4.h` 9 ./gen_manual "lz4 $LIBVER_SCRIPT" ../../lib/lz4.h ./lz4_manual.html
|
/third_party/lz4/examples/ |
D | Makefile | 37 LZ4 = ../programs/lz4 46 $(LZ4DIR)/liblz4.a: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c $(LZ4DIR)/lz4frame.c $(LZ4DIR)/lz4.h $(LZ4DIR… 77 $(MAKE) -C ../programs lz4 96 $(LZ4) -vt $(TESTFILE).lz4 99 @rm -f core *.o *.dec *-0 *-9 *-8192 *.lz4s *.lz4 \
|
/third_party/lz4/contrib/meson/meson/programs/ |
D | meson.build | 30 lz4 = executable('lz4', build 42 install_man(join_paths(lz4_root_dir, 'programs/lz4.1')) 50 meson.add_install_script(InstallSymlink_py, 'lz4' + bin_EXT, f + bin_EXT, lz4_bindir) 51 meson.add_install_script(InstallSymlink_py, 'lz4' + man1_EXT, f + man1_EXT, lz4_man1_dir)
|
/third_party/lz4/contrib/meson/meson/lib/ |
D | meson.build | 13 liblz4_sources = [join_paths(lz4_root_dir, 'lib/lz4.c'), 34 liblz4 = library('lz4', build 45 name: 'lz4', 49 url: 'http://www.lz4.org/') 51 install_headers(join_paths(lz4_root_dir, 'lib/lz4.h'),
|
/third_party/lz4/lib/ |
D | Makefile | 36 …_MAJOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h` 37 …_MINOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h` 38 …ATCH_SCRIPT:=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h` 195 $(Q)$(INSTALL_DATA) lz4.h $(DESTDIR)$(includedir)/lz4.h 198 @echo lz4 libraries installed 211 $(Q)$(RM) $(DESTDIR)$(includedir)/lz4.h 215 @echo lz4 libraries successfully uninstalled
|
D | README.md | 9 The minimum required is **`lz4.c`** and **`lz4.h`**, 20 and depends on regular `lib/lz4.*` source files. 25 In order to produce compressed data compatible with `lz4` command line utility, 30 including, lz4 and lz4hc, and also **xxhash**. 55 and with `make` : `CPPFLAGS+=-DLZ4_FAST_DEC_LOOP=1 make lz4`. 58 Set to 65535 by default, which is the maximum value supported by lz4 format. 91 lz4 source code can be amalgamated into a single file. 94 cat lz4.c lz4hc.c lz4frame.c > lz4_all.c 109 The header files `lz4.h`, `lz4hc.h`, `lz4frame.h` and the dynamic library 125 - `Makefile` : `make` script to compile and install lz4 library (static and dynamic)
|
/third_party/lz4/contrib/snap/ |
D | README.md | 5 of lz4. Snaps are universal Linux packages that allow you to easily 21 * register yourself as owner of lz4 name in snapstore 25 * install snap by doing 'snap install lz4' on any Linux distro 27 * all installed copies of lz4 will be automatically updated to your new version
|
/third_party/lz4/contrib/djgpp/ |
D | README.MD | 1 # lz4 for DOS/djgpp 2 This file details on how to compile lz4.exe, and liblz4.a for use on DOS/djgpp using 12 In the base dir of lz4 and with `contrib/djgpp/Makefile`, try: 16 * `make -f contrib/djgpp/Makefile lz4.exe`
|
D | Makefile | 10 …MAJOR=$(shell sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lib/lz4.h) 11 …MINOR=$(shell sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lib/lz4.h) 12 …TCH=$(shell sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lib/lz4.h)
|
/third_party/lz4/build/VS2017/lz4/ |
D | lz4.rc | 4 #include "lz4.h" /* LZ4_VERSION_STRING */ 38 VALUE "InternalName", "lz4.exe" 40 VALUE "OriginalFilename", "lz4.exe"
|