/third_party/lz4/tests/ |
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 115 decompress-partial-usingDict: lz4.o decompress-partial-usingDict.c [all …]
|
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 | 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 tagged (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/programs/ |
D | Makefile | 35 LIBVER_SRC := $(LZ4DIR)/lz4.h 70 default: lz4-release 75 all: lz4 lz4c 81 lz4-exe.rc: lz4-exe.rc.in 90 lz4-exe.o: lz4-exe.rc 91 $(WINDRES) -i lz4-exe.rc -o lz4-exe.o 93 lz4: $(OBJFILES) lz4-exe.o target 96 lz4: $(OBJFILES) target 100 .PHONY: lz4-release 101 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 > 500 MB/s per core, 27 The native file format is the `.lz4` format. 29 ### Difference between lz4 and gzip argument [all …]
|
D | README.md | 13 - `lz4` : default CLI, with a command line syntax close to gzip 14 - `lz4c` : Same as `lz4` with additional support legacy lz4 commands (incompatible with gzip) 25 CLI includes in-memory compression benchmark module for lz4. 40 lz4 [arg] [input] [output] 47 -d : decompression (default for .lz4 extension)
|
/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 | 43 default: lib-release lz4-release 52 allmost: lib lz4 59 .PHONY: lz4 lz4-release 60 lz4 : liblz4.a target 61 lz4-release : lib-release 62 lz4 lz4-release : target 64 cp $(PRGDIR)/lz4$(EXT) . 86 $(RM) lz4$(EXT) 133 $(MAKE) -C $(TESTDIR) test-lz4-essentials 222 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/build/cmake/ |
D | CMakeLists.txt | 18 file(STRINGS "${LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_MAJOR REGEX "^#define LZ4_VERSION_MAJOR … 20 file(STRINGS "${LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_MINOR REGEX "^#define LZ4_VERSION_MINOR … 22 file(STRINGS "${LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_RELEASE REGEX "^#define LZ4_VERSION_RELE… 36 option(LZ4_BUILD_CLI "Build lz4 program" ON) 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" 110 OUTPUT_NAME lz4 120 set(STATIC_LIB_NAME lz4) 140 # lz4 [all …]
|
/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/examples/ |
D | Makefile | 37 LZ4 = ../programs/lz4 46 $(LZ4DIR)/liblz4.a: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c $(LZ4DIR)/lz4frame.c $(LZ4DIR)/lz4.h $(LZ4DIR… 80 $(MAKE) -C ../programs lz4 99 $(LZ4) -vt $(TESTFILE).lz4 102 $(LZ4) -vt $(TESTFILE).lz4 110 @rm -f core *.o *.dec *-0 *-9 *-8192 *.lz4s *.lz4 \
|
/third_party/lz4/contrib/meson/meson/lib/ |
D | meson.build | 14 lz4_source_root / 'lib/lz4.c', 34 'lz4', 48 'lz4-internal', 61 name: 'lz4', 65 url: 'http://www.lz4.org/' 69 lz4_source_root / 'lib/lz4.h',
|
/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/contrib/meson/meson/programs/ |
D | meson.build | 20 lz4 = executable( variable 21 'lz4', 29 install_man(lz4_source_root / 'programs/lz4.1') 36 pointing_to: 'lz4' 41 pointing_to: 'lz4.1'
|
/third_party/lz4/lib/dll/example/ |
D | README.md | 6 - `lz4.exe` : Command Line Utility, supporting gzip-like arguments 7 - `dll\msys-lz4-1.dll` : The DLL of LZ4 library, compiled by msys 19 Usage: lz4 [arg] [input] [output] 38 The header files from `include\` and the dynamic library `dll\msys-lz4-1.dll` 42 file it should be linked with `dll\msys-lz4-1.dll`. For example: 44 gcc $(CFLAGS) -Iinclude\ test-dll.c -o test-dll dll\msys-lz4-1.dll 46 The compiled executable will require LZ4 DLL which is available at `dll\msys-lz4-1.dll`. 69 The compiled executable will require LZ4 DLL which is available at `dll\msys-lz4-1.dll`.
|
/third_party/lz4/lib/ |
D | Makefile | 37 …JOR_SCRIPT:=`$(SED) -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h` 38 …NOR_SCRIPT:=`$(SED) -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h` 39 …H_SCRIPT:=`$(SED) -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h` 203 $(INSTALL_DATA) lz4.h $(DESTDIR)$(includedir)/lz4.h 206 @echo lz4 libraries installed 219 $(RM) $(DESTDIR)$(includedir)/lz4.h 223 @echo lz4 libraries successfully uninstalled
|
D | README.md | 13 The minimum required is **`lz4.c`** and **`lz4.h`**, 24 and depends on regular `lib/lz4.*` source files. 29 In order to produce compressed data compatible with `lz4` command line utility, 34 including, lz4 and lz4hc, and also **xxhash**. 74 and with `make` : `CPPFLAGS+=-DLZ4_FAST_DEC_LOOP=1 make lz4`. 77 Set to 65535 by default, which is the maximum value supported by lz4 format. 109 For more details, see description of this macro in `lib/lz4.c`. 116 For more details, see description of this macro in `lib/lz4.h`. 122 lz4 source code can be amalgamated into a single file. 125 cat lz4.c lz4hc.c lz4frame.c > lz4_all.c [all …]
|
/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`
|