/external/lz4/tests/ |
D | Makefile | 48 LZ4 := $(PRGDIR)/lz4$(EXT) macro 70 $(LN_SF) $(LZ4) $(PRGDIR)/$@ 176 $(LZ4) -B4D tmplsdg5M -c | $(LZ4) -dv --sparse > tmplscB4 178 $(LZ4) -B5D tmplsdg5M -c | $(LZ4) -dv --sparse > tmplscB5 180 $(LZ4) -B6D tmplsdg5M -c | $(LZ4) -dv --sparse > tmplscB6 182 $(LZ4) -B7D tmplsdg5M -c | $(LZ4) -dv --sparse > tmplscB7 184 $(LZ4) tmplsdg5M -c | $(LZ4) -dv --no-sparse > tmplsnosparse 187 …./datagen -s1 -g1200007 -P100 | $(LZ4) | $(LZ4) -dv --sparse > tmplsodd # Odd size file (to gene… 192 echo "Hello World 1 !" | $(LZ4) | $(LZ4) -d -c 193 echo "Hello World 2 !" | $(LZ4) | $(LZ4) -d | cat [all …]
|
D | test_custom_block_sizes.sh | 4 LZ4=../lz4 17 $LZ4 -f -B31 $TMPFILE1 && failures="31 (should fail) " 22 $LZ4 -f -B$blocksize $TMPFILE1 23 $LZ4 -f -B$blocksize $TMPFILE2 31 $LZ4 -f -B$blocksize $TMPFILE1 32 $LZ4 -f -B$blocksize $TMPFILE2 40 $LZ4 -f -B$blocksize $TMPFILE1 41 $LZ4 -f -B$blocksize $TMPFILE2 49 $LZ4 -f -B$blocksize $TMPFILE1 50 $LZ4 -f -B$blocksize $TMPFILE2 [all …]
|
D | test-lz4-list.py | 11 LZ4 = os.path.dirname(os.path.realpath(__file__)) + "/../lz4" variable 12 if not os.path.exists(LZ4): 13 LZ4 = os.path.dirname(os.path.realpath(__file__)) + "/../programs/lz4" variable 39 …for i, line in enumerate(execute("{} --list -m {}/test_list_*.lz4".format(LZ4, TEMP), print_output… 115 …test_list_concat-all.lz4 {}/test_list_*M-lz4f-2f--content-size.lz4".format(LZ4, TEMP, TEMP), print… 251 execute("{} {} {} {}".format(LZ4, j, filename, lz4file)) 261 execute("{} -l {} {}".format(LZ4, filename, lz4file))
|
/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 Streaming API example which implements double buffer (de)com… 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 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 76 $(LZ4) : 79 test : all $(LZ4) 96 $(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-… 24 LZ4 library is provided as open-source software using BSD 2-Clause license. 64 |**LZ4 default (v1.9.0)** |**2.101**| **780 MB/s**| **4970 MB/s** | 71 |**LZ4 HC -9 (v1.9.0)** |**2.721**| 41 MB/s | **4900 MB/s** | 77 LZ4 is also compatible and optimized for x32 mode, 89 LZ4's `Makefile` supports standard [Makefile conventions], 102 The raw LZ4 block compression format is detailed within [lz4_Block_format]. 107 Interoperable versions of LZ4 must also respect the frame format. [all …]
|
D | INSTALL | 9 LZ4's `Makefile` supports standard [Makefile conventions],
|
/external/lz4/lib/ |
D | README.md | 1 LZ4 - Library Files 7 #### Minimal LZ4 build 11 They generate and decode data using the [LZ4 block format]. 19 This variant also compresses data using the [LZ4 block format], 58 Reducing maximum distance will reduce opportunities for LZ4 to find matches, 69 before including the LZ4 header files. 95 It means that if a project that uses LZ4 consists of a single `test-dll.c` 100 The compiled executable will require LZ4 DLL which is available at `dll\liblz4.dll`. 113 [LZ4 block format]: ../doc/lz4_Block_format.md
|
D | liblz4.pc.in | 1 # LZ4 - Fast LZ compression algorithm
|
D | liblz4-dll.rc.in | 27 VALUE "ProductName", "LZ4"
|
/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_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. 280 When compressed, the data must respect the [LZ4 block format specification](https://github.com/lz4/… 315 it’s recommended to start with a zero-byte LZ4 frame 392 1.6.1 : introduced terms "LZ4 Frame Header" and "LZ4 Frame Footer"
|
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. 14 (see [LZ4 Frame format]). 23 [LZ4 Frame format]: lz4_Frame_format.md 29 An LZ4 compressed block is composed of sequences.
|
/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/erofs-utils/ |
D | configure.ac | 63 [AS_HELP_STRING([--disable-lz4], [disable LZ4 compression support @<:@default=enabled@:>@])], 84 # Use customized LZ4 library path when specified. 86 [AS_HELP_STRING([--with-lz4-incdir=DIR], [LZ4 include directory])], [ 90 [AS_HELP_STRING([--with-lz4-libdir=DIR], [LZ4 lib directory])], [
|
/external/lz4/programs/ |
D | lz4-exe.rc.in | 18 VALUE "ProductName", "LZ4"
|
/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/squashfs-tools/squashfs-tools/ |
D | Makefile | 213 LZ4!")
|
/external/lz4/visual/VS2017/liblz4-dll/ |
D | liblz4-dll.rc | 41 VALUE "ProductName", "LZ4"
|