/external/lz4/programs/ |
D | Makefile | 31 LIBVER_SRC := ../lib/lz4.h 70 default: lz4-release 72 all: lz4 lz4c 77 lz4: CFLAGS += $(DEBUGFLAGS) target 78 lz4: $(OBJFILES) target 81 lz4-release: DEBUGFLAGS= 82 lz4-release: lz4 95 lz4$(EXT) lz4c$(EXT) lz4c32$(EXT) unlz4 lz4cat 99 lz4.1: lz4.1.md 102 man: lz4.1 [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 …]
|
D | README.md | 6 - `lz4` : default CLI, with a command line syntax close to gzip 7 - `lz4c` : Same as `lz4` with additional support legacy lz4 commands (incompatible with gzip) 17 CLI includes in-memory compression benchmark module for lz4. 32 lz4 [arg] [input] [output] 39 -d : decompression (default for .lz4 extension)
|
/external/lz4/tests/ |
D | Makefile | 56 LZ4 := $(PRGDIR)/lz4$(EXT) 72 lz4: target 82 fullbench : $(LIBDIR)/lz4.o $(LIBDIR)/lz4hc.o $(LIBDIR)/lz4frame.o $(LIBDIR)/xxhash.o fullbench.c 93 fuzzer : $(LIBDIR)/lz4.o $(LIBDIR)/lz4hc.o $(LIBDIR)/xxhash.o fuzzer.c 96 frametest: $(LIBDIR)/lz4frame.o $(LIBDIR)/lz4.o $(LIBDIR)/lz4hc.o $(LIBDIR)/xxhash.o frametest.c 99 fasttest: $(LIBDIR)/lz4.o fasttest.c 119 $(PYTHON) test-lz4-versions.py 138 test: test-lz4 test-lz4c test-fasttest test-frametest test-fullbench test-fuzzer 143 test-lz4-sparse: lz4 datagen 175 test-lz4-contentSize: lz4 datagen [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 …]
|
/external/lz4/examples/ |
D | Makefile | 36 LZ4 = ../programs/lz4 53 printVersion: $(LZ4DIR)/lz4.c printVersion.c 56 doubleBuffer: $(LZ4DIR)/lz4.c blockStreaming_doubleBuffer.c 59 dictionaryRandomAccess: $(LZ4DIR)/lz4.c dictionaryRandomAccess.c 62 ringBuffer : $(LZ4DIR)/lz4.c blockStreaming_ringBuffer.c 65 ringBufferHC: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c HCStreaming_ringBuffer.c 68 lineCompress: $(LZ4DIR)/lz4.c blockStreaming_lineByLine.c 74 compressFunctions: $(LZ4DIR)/lz4.c compress_functions.c 77 simpleBuffer: $(LZ4DIR)/lz4.c simple_buffer.c 88 $(LZ4) -vt $(TESTFILE).lz4 [all …]
|
D | .gitignore | 1 /Makefile.lz4*
|
/external/lz4/visual/ |
D | README.md | 6 The following projects are included with the lz4 distribution: 10 #### How to compile lz4 with Visual Studio 13 2. Download the latest version of lz4 from https://github.com/lz4/lz4/releases 15 4. Go to decompressed directory then to `visual` then `VS2010` and open `lz4.sln` 19 8. If compilation will be fine a compiled executable will be in `visual\VS2010\bin\x64_Release\lz4.… 22 #### Projects available within lz4.sln 24 The Visual Studio solution file `lz4.sln` contains many projects that will be compiled to the 25 `visual\VS2010\bin\$(Platform)_$(Configuration)` directory. For example `lz4` set to `x64` and 26 `Release` will be compiled to `visual\VS2010\bin\x64_Release\lz4.exe`. The solution file contains t… 29 - `lz4` : Command Line Utility, supporting gzip-like arguments [all …]
|
/external/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/Cyan4973/lz4/blob/master/lib/LICENSE
|
D | liblz4-dev.install | 1 usr/include/lz4*
|
/external/lz4/contrib/cmake_unofficial/ |
D | CMakeLists.txt | 16 file(STRINGS "${LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_MAJOR REGEX "^#define LZ4_VERSION_MAJOR … 18 file(STRINGS "${LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_MINOR REGEX "^#define LZ4_VERSION_MINOR … 20 file(STRINGS "${LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_RELEASE REGEX "^#define LZ4_VERSION_RELE… 39 # set it to OFF in your project before you add_subdirectory(lz4/contrib/cmake_unofficial). 81 "${LZ4_LIB_SOURCE_DIR}/lz4.c" 83 "${LZ4_LIB_SOURCE_DIR}/lz4.h" 104 OUTPUT_NAME lz4 112 OUTPUT_NAME lz4 124 # lz4 126 set_target_properties(lz4cli PROPERTIES OUTPUT_NAME lz4) [all …]
|
/external/lz4/ |
D | Makefile | 53 .PHONY: default all lib lz4 clean test versionsTest examples 58 @cp $(PRGDIR)/lz4$(EXT) . 69 lz4: target 71 @cp $(PRGDIR)/lz4$(EXT) . 73 lz4-release: 75 @cp $(PRGDIR)/lz4$(EXT) . 83 @$(RM) lz4$(EXT) 141 $(MAKE) -C $(PRGDIR) lz4
|
D | README.md | 25 [travisMasterBadge]: https://travis-ci.org/lz4/lz4.svg?branch=master "Continuous Integration test s… 26 [travisDevBadge]: https://travis-ci.org/lz4/lz4.svg?branch=dev "Continuous Integration test suite" 27 [travisLink]: https://travis-ci.org/lz4/lz4 30 [AppveyorLink]: https://ci.appveyor.com/project/YannCollet/lz4-1lndh 94 many contributors have created versions of lz4 in multiple languages 98 [LZ4 Homepage]: http://www.lz4.org
|
D | NEWS | 31 cli : fix : -t correctly validates lz4-compressed files, by Nick Terrell 54 Changed: New lz4 and lz4hc compression API. Previous function prototypes still supported. 68 New : lz4 cli supports long commands (suggested by Takayuki Matsuoka) 72 New : lz4 cli supports "pass-through" mode, requested by Neil Wilson 89 Changed : lz4 is C90 compatible 127 Updated : Makefile : synchronize library version number with lz4.h, thanks to Takayuki Matsuoka 130 Makefile : lz4-test only test native binaries, as suggested by Michał Górny (issue 136) 161 lz4.h : no more static inline prototypes (issue 116) 170 Version number into lz4.h (suggested by Francesc Alted) 180 lz4 & lz4hc : added capability to allocate state & stream state with custom allocator (issue 99) [all …]
|
/external/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 $LIBVER_SCRIPT ../../lib/lz4.h ./lz4_manual.html
|
D | README.md | 6 This simple C++ program generates a single-page HTML manual from `lz4.h`. 27 To compile program and generate lz4 manual we have used: 30 ./gen_manual.exe 1.7.3 ../../lib/lz4.h lz4_manual.html
|
/external/lz4/lib/ |
D | README.md | 9 The minimum required is **`lz4.c`** and **`lz4.h`**, 18 The variant still depends on regular `lz4` source files. 19 In particular, the decompression is still provided by `lz4.c`. 24 In order to produce files or streams compatible with `lz4` command line utility, 25 it's necessary to encode lz4-compressed blocks using the [official interoperable frame format]. 27 In order to work properly, lz4frame needs lz4 and lz4hc, and also **xxhash**, 46 The header files `lz4.h`, `lz4hc.h`, `lz4frame.h` and the dynamic library 62 - Makefile : script to compile or install lz4 library (static or dynamic)
|
D | Makefile | 34 …_MAJOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h` 35 …_MINOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h` 36 …ATCH_SCRIPT:=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h` 154 @$(INSTALL_DATA) lz4.h $(DESTDIR)$(INCLUDEDIR)/lz4.h 157 @echo lz4 static and shared libraries installed 165 @$(RM) $(DESTDIR)$(INCLUDEDIR)/lz4.h 168 @echo lz4 libraries successfully uninstalled
|
D | liblz4.pc.in | 9 Name: lz4 name 11 URL: http://www.lz4.org/
|
/external/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)
|
/external/lz4/visual/VS2010/liblz4-dll/ |
D | liblz4-dll.rc | 4 #include "lz4.h" /* LZ4_VERSION_STRING */ 38 VALUE "InternalName", "lz4.dll" 40 VALUE "OriginalFilename", "lz4.dll"
|
/external/lz4/visual/VS2010/lz4/ |
D | lz4.rc | 4 #include "lz4.h" /* LZ4_VERSION_STRING */ 38 VALUE "InternalName", "lz4.exe" 40 VALUE "OriginalFilename", "lz4.exe"
|