/external/lz4/tests/ |
D | Makefile | 55 LZ4 := $(PRGDIR)/lz4$(EXT) macro 78 ln -sf $(LZ4) $(PRGDIR)/$@ 162 $(LZ4) -B4D tmplsdg5M | $(LZ4) -dv --sparse > tmplscB4 164 $(LZ4) -B5D tmplsdg5M | $(LZ4) -dv --sparse > tmplscB5 166 $(LZ4) -B6D tmplsdg5M | $(LZ4) -dv --sparse > tmplscB6 168 $(LZ4) -B7D tmplsdg5M | $(LZ4) -dv --sparse > tmplscB7 170 $(LZ4) tmplsdg5M | $(LZ4) -dv --no-sparse > tmplsnosparse 173 …./datagen -s1 -g1200007 -P100 | $(LZ4) | $(LZ4) -dv --sparse > tmplsodd # Odd size file (to gene… 178 echo "Hello World 1 !" | $(LZ4) | $(LZ4) -d -c 179 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 | 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 | 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_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 | 37 LZ4 = ../programs/lz4 macro 85 $(LZ4) : 88 test : all $(LZ4) 105 $(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 is also compatible with [dictionary compression](https://github.com/facebook/zstd#the-case-for-… 22 LZ4 library is provided as open-source software using BSD 2-Clause license. 62 |**LZ4 default (v1.8.2)** |**2.101**|**730 MB/s** | **3900 MB/s** | 69 |**LZ4 HC -9 (v1.8.2)** |**2.721**| 40 MB/s | **3920 MB/s** | 75 LZ4 is also compatible and optimized for x32 mode, 87 LZ4's `Makefile` supports standard [Makefile conventions], 100 The raw LZ4 block compression format is detailed within [lz4_Block_format]. 105 Interoperable versions of LZ4 must also respect the frame format. [all …]
|
D | INSTALL | 9 LZ4's `Makefile` supports standard [Makefile conventions],
|
D | NEWS | 46 doc : Updated LZ4 Frame format to v1.6.0, restoring Dictionary-ID field 104 New : LZ4 CLI improved performance compressing/decompressing multiple files (#86, kind contribut… 135 Fixed : bug within LZ4 HC streaming mode, reported by James Boyle 150 New : LZ4 HC streaming mode 185 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 11 They generate and decode data using [LZ4 block format]. 48 It means that if a project that uses LZ4 consists of a single `test-dll.c` 53 The compiled executable will require LZ4 DLL which is available at `dll\liblz4.dll`. 66 [LZ4 block format]: ../doc/lz4_Block_format.md
|
D | liblz4.pc.in | 1 # LZ4 - Fast LZ compression algorithm
|
D | NOTICE | 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/contrib/cmake_unofficial/ |
D | CMakeLists.txt | 1 # CMake support for LZ4 10 # LZ4's CMake support is maintained by Evan Nemerson; when filing 28 project(LZ4 C) project 31 project(LZ4 project 38 # If LZ4 is being bundled in another project, we don't want to 56 set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LZ4 compression library")
|
/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. 148 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 159 (up to LZ4 window size, which is 64 KB). 266 The highest bit is “0” if data in the block is compressed by LZ4. 312 it’s recommended to start with a zero-byte LZ4 frame 389 1.6.1 : introduced terms "LZ4 Frame Header" and "LZ4 Frame Footer"
|
/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/lz4/ |
D | lz4.rc | 41 VALUE "ProductName", "LZ4"
|
/external/lz4/visual/VS2010/liblz4-dll/ |
D | liblz4-dll.rc | 41 VALUE "ProductName", "LZ4"
|
/external/squashfs-tools/squashfs-tools/ |
D | Makefile | 213 LZ4!")
|
/external/lz4/visual/VS2017/liblz4-dll/ |
D | liblz4-dll.rc | 41 VALUE "ProductName", "LZ4"
|
/external/u-boot/lib/ |
D | Kconfig | 367 config LZ4 config 368 bool "Enable LZ4 decompression support" 370 If this option is set, support for LZ4 compressed images 371 is included. The LZ4 algorithm can run in-place as long as the 375 NOTE: This implements the release version of the LZ4 frame 414 bool "Enable LZ4 decompression support in SPL" 416 This enables support for tge LZ4 decompression algorithm in SPL. LZ4
|