/external/lz4/tests/ |
D | Makefile | 56 LZ4 := $(PRGDIR)/lz4$(EXT) macro 80 cp $(LZ4) $(LZ4)c32 146 $(LZ4) -B4D tmpSrc | $(LZ4) -dv --sparse > tmpB4 148 $(LZ4) -B5D tmpSrc | $(LZ4) -dv --sparse > tmpB5 150 $(LZ4) -B6D tmpSrc | $(LZ4) -dv --sparse > tmpB6 152 $(LZ4) -B7D tmpSrc | $(LZ4) -dv --sparse > tmpB7 154 $(LZ4) tmpSrc | $(LZ4) -dv --no-sparse > tmpNoSparse 157 …./datagen -s1 -g1200007 -P100 | $(LZ4) | $(LZ4) -dv --sparse > tmpOdd # Odd size file (to genera… 162 echo "Hello World 1 !" | $(LZ4) | $(LZ4) -d -c 163 echo "Hello World 2 !" | $(LZ4) | $(LZ4) -d | cat [all …]
|
/external/lz4/lib/dll/example/ |
D | README.md | 1 LZ4 Windows binary package 7 - `dll\liblz4.dll` : The DLL of LZ4 library 8 - `dll\liblz4.lib` : The import library of LZ4 library for Visual C++ 9 - `example\` : The example of usage of LZ4 library 10 - `include\` : Header files required with LZ4 library 11 - `static\liblz4_static.lib` : The static LZ4 library 29 #### The example of usage of static and dynamic LZ4 libraries with gcc/MinGW 32 `fullbench-dll` uses a dynamic LZ4 library from the `dll` directory. 33 `fullbench-lib` uses a static LZ4 library from the `lib` directory. 36 #### Using LZ4 DLL with gcc/MinGW [all …]
|
/external/lz4/examples/ |
D | streaming_api_basics.md | 1 # LZ4 Streaming API Basics 3 ## LZ4 API sets 5 LZ4 has the following API sets : 9 It guarantees interoperability with other LZ4 framing format compliant tools/libraries 10 such as LZ4 command line utility, node-lz4, etc. 12 It compress single raw memory block to LZ4 memory block and vice versa. 23 In other words, LZ4 library find redundancy from single contiguous memory block. 25 So LZ4 library could find more redundancy than Block API. 87 LZ4 will not access further memories.
|
D | blockStreaming_lineByLine.md | 1 # LZ4 Streaming API Example : Line by Line Text Compression 4 `blockStreaming_lineByLine.c` is LZ4 Straming API example which implements line by line incremental… 8 - Firstly, read "LZ4 Streaming API Basics". 23 First of all, allocate "Ring Buffer" for input and LZ4 compressed data buffer for output. 94 For the first time, LZ4 doesn't know any previous dependencies, 95 so it just compress the line without dependencies and generates compressed line {Out#1} to LZ4 comp… 99 But in this time, LZ4 can use dependency to Line#1 to improve compression ratio. 104 After resetting, at Line#X+1 pointer is not adjacent, but LZ4 still maintain its memory. 107 In Line#X+2 (see (5)), finally LZ4 forget almost all memories but still remains Line#X+1.
|
D | blockStreaming_doubleBuffer.md | 1 # LZ4 Streaming API Example : Double Buffer 4 `blockStreaming_doubleBuffer.c` is LZ4 Straming API example which implements double buffer (de)comp… 8 - Firstly, read "LZ4 Streaming API Basics". 22 First of all, allocate "Double Buffer" for input and LZ4 compressed data buffer for output. 74 For the first time, LZ4 doesn't know any previous dependencies, 75 so it just compress the line without dependencies and generates compressed block {Out#1} to LZ4 com… 79 In this time, LZ4 can use dependency to Block#1 to improve compression ratio. 83 Also this time, LZ4 can use dependency to Block#2.
|
D | Makefile | 36 LZ4 = ../programs/lz4 macro 88 $(LZ4) -vt $(TESTFILE).lz4
|
D | dictionaryRandomAccess.md | 1 # LZ4 API Example : Dictionary Random Access 3 `dictionaryRandomAccess.c` is LZ4 API example which implements dictionary compression and random ac…
|
D | README.md | 1 # LZ4 examples
|
/external/lz4/ |
D | README.md | 1 LZ4 - Extremely fast compression 4 LZ4 is lossless compression algorithm, 17 LZ4 library is provided as open-source software using BSD 2-Clause license. 58 |**LZ4 fast 8 (v1.7.3)**| 1.799 |**911 MB/s** | **3360 MB/s** | 59 |**LZ4 default (v1.7.3)**|**2.101**|**625 MB/s** | **3220 MB/s** | 67 |**LZ4 HC -9 (v1.7.3)** |**2.720**| 34 MB/s | **3240 MB/s** | 73 LZ4 is also compatible and well optimized for x32 mode, for which it provides +10% speed performanc… 79 The raw LZ4 block compression format is detailed within [lz4_Block_format]. 84 Interoperable versions of LZ4 must respect this frame format. 96 A list of known source ports is maintained on the [LZ4 Homepage]. [all …]
|
D | NEWS | 56 New : LZ4 CLI improved performance compressing/decompressing multiple files (#86, kind contribut… 87 Fixed : bug within LZ4 HC streaming mode, reported by James Boyle 102 New : LZ4 HC streaming mode 137 New : LZ4 Streaming API (Fast version), special thanks to Takayuki Matsuoka
|
/external/lz4/lib/ |
D | README.md | 1 LZ4 - Library Files 7 #### Minimal LZ4 build 13 #### The High Compression variant of LZ4 49 It means that if a project that uses LZ4 consists of a single `test-dll.c` 54 The compiled executable will require LZ4 DLL which is available at `dll\liblz4.dll`.
|
D | liblz4.pc.in | 1 # LZ4 - Fast LZ compression algorithm
|
D | NOTICE | 1 LZ4 Library
|
D | LICENSE | 1 LZ4 Library
|
/external/lz4/visual/ |
D | README.md | 34 - `liblz4` : A static LZ4 library compiled to `liblz4_static.lib` 35 - `liblz4-dll` : A dynamic LZ4 library (DLL) compiled to `liblz4.dll` with the import library `libl… 36 …ench-dll` : The fullbench program compiled with the import library; the executable requires LZ4 DLL 39 #### Using LZ4 DLL with Microsoft Visual C++ project 52 The compiled executable will require LZ4 DLL which is available at
|
/external/lz4/doc/ |
D | lz4_Block_format.md | 1 LZ4 Block Format Description 8 willing to produce LZ4-compatible compressed data blocks 11 LZ4 is an LZ77-type compressor with a fixed, byte-oriented encoding. 13 The latter is assumed to be handled by other parts of the system (see [LZ4 Frame format]). 22 [LZ4 Frame format]: lz4_Frame_format.md 28 An LZ4 compressed block is composed of sequences. 127 by any LZ4 decoder if it follows the format specification described above.
|
D | lz4_Frame_format.md | 1 LZ4 Frame Format Description 29 using the [LZ4 algorithm](http://www.lz4.org). 35 The format uses the LZ4 compression method, 43 to compress data into LZ4 format and/or decompress data from LZ4 format. 61 General Structure of LZ4 Frame format 153 (up to LZ4 window size, which is 64 KB). 236 The highest bit is “0” if data in the block is compressed by LZ4. 282 it’s recommended to start with a zero-byte LZ4 frame
|
/external/lz4/contrib/cmake_unofficial/ |
D | CMakeLists.txt | 1 # CMake support for LZ4 10 # LZ4's CMake support is maintained by Evan Nemerson; when filing 26 project(LZ4 C) project 29 project(LZ4 project 36 # If LZ4 is being bundled in another project, we don't want to 54 set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LZ4 compression library")
|
/external/squashfs-tools/ |
D | INSTALL | 19 LZ4 support is not yet in any mainline kernel. 29 LZO, LZ4 and XZ compression support, and for instructions on disabling GZIP
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-4.3 | 28 4. New LZ4 compressor (note not yet in mainline kernel) 94 Compress using LZ4 High Compression 105 for LZO/LZ4 best means a tradeoff between compression and (de)-compression 106 overhead (LZO/LZ4 by definition are intended for weaker processors).
|
/external/lz4/visual/VS2010/liblz4-dll/ |
D | liblz4-dll.rc | 41 VALUE "ProductName", "LZ4"
|
/external/lz4/visual/VS2010/lz4/ |
D | lz4.rc | 41 VALUE "ProductName", "LZ4"
|
/external/squashfs-tools/squashfs-tools/ |
D | Makefile | 213 LZ4!")
|
/external/lz4/contrib/djgpp/ |
D | README.MD | 11 ## Building LZ4 for DOS
|
/external/lz4/programs/ |
D | README.md | 1 Command Line Interface for LZ4 library
|