summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #1191 from vsolontsov-volant/install_lz4file_hYann Collet2022-11-241-0/+2
|\
| * Add copying lz4file.h to make installVladimir Solontsov2022-11-221-0/+2
* | Fixed const-ness of src data pointer in lz4file and install lz4file.hVladimir Solontsov2022-11-222-3/+3
|/
* minor refactor of lz4.cYann Collet2022-10-011-19/+23
* fix another ubsan warning in lz4hcmd_offYann Collet2022-10-011-1/+1
* use LZ4HC_match_t structure directly to store match candidatesYann Collet2022-10-011-68/+53
* removed virtual pointer from optimal parserYann Collet2022-09-301-5/+4
* removed virtual match pointer from HC parserYann Collet2022-09-301-26/+23
* sequence encoder accepts offset as a valueYann Collet2022-09-301-14/+15
* LZ4 HC matchfinder returns an offset valueYann Collet2022-09-301-43/+58
* added code documentation on heap modeYann Collet2022-09-274-15/+46
* added notes about LZ4_compressFrame() and stack/heap memory usageYann Collet2022-09-202-4/+14
* fix rare ubYann Collet2022-09-171-6/+8
* fixed minor UB warningYann Collet2022-09-161-12/+13
* removed a few more usages of base ptrYann Collet2022-09-161-15/+20
* remove another usage of baseYann Collet2022-09-161-4/+6
* fix benchmark more using DictionaryYann Collet2022-09-152-9/+33
* document Makefile variablesYann Collet2022-09-131-0/+7
* build: Support BUILD_SHARED=noFotis Xenakis2022-09-131-0/+4
* Clarifiy documentation for LZ4F_HEAPMODEYann Collet2022-09-132-3/+5
* simplify getPositionYann Collet2022-09-121-9/+7
* fixed a few ubsan warnings in lz4hcYann Collet2022-09-091-18/+18
* added LZ4F_compressUpdate() in fullbenchYann Collet2022-09-081-1/+1
* allocation optimization for lz4frame compressionYann Collet2022-09-081-7/+6
* Add note about RC_INVOKEDTakayuki Matsuoka2022-08-121-0/+13
* Suppress warning from rc.exeTakayuki Matsuoka2022-08-121-0/+4
* Suppress false positive warning from MSVCTakayuki Matsuoka2022-08-121-0/+7
* faster CLI decompression speed for frames with -BD4 settingYann Collet2022-08-121-16/+22
* updated documentation in anticipation for `v1.9.4` releaseYann Collet2022-08-111-13/+13
* Add short description of LZ4_FREESTANDING and _DISABLE_MEMORY_ALLOCATIONTakayuki Matsuoka2022-08-111-0/+12
* Fix document for LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATION in lz4.cTakayuki Matsuoka2022-08-111-1/+6
* Merge pull request #1129 from t-mat/disable-memory-alloc-add-docYann Collet2022-08-102-0/+15
|\
| * Fix: Disable prototypes in header fileTakayuki Matsuoka2022-08-061-0/+4
| * Add: Doxygen comment for LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATIONTakayuki Matsuoka2022-08-061-0/+11
* | Add short document of LZ4_FREESTANDING to lz4.hTakayuki Matsuoka2022-08-101-4/+11
* | Fix: Disable LZ4HC correspond functions when LZ4_STATIC_LINKING_ONLY_DISABLE_...Takayuki Matsuoka2022-08-072-1/+5
* | Add LZ4_FREESTANDINGTakayuki Matsuoka2022-08-072-1/+26
|/
* Merge pull request #1124 from t-mat/compile-time-purge-memalloc-funcYann Collet2022-08-052-1/+15
|\
| * Fix : Internal memory allocation macro namesTakayuki Matsuoka2022-07-311-6/+3
| * Introduce LZ4_STATIC_LINKING_ONLY_DISABLE_MEMORY_ALLOCATIONTakayuki Matsuoka2022-07-312-1/+18
* | simplify read_variable_length()Yann Collet2022-08-031-26/+24
* | refactor read_variable_length()Yann Collet2022-08-021-19/+29
* | remove support of decompress_fast*() from decompress_generic()Yann Collet2022-08-021-92/+43
* | introduce LZ4_decompress_unsafe_generic()Yann Collet2022-08-021-18/+158
* | fix: various typosDominique Pelle2022-07-313-3/+3
* | New macro for memcpy, memmove and memsetTakayuki Matsuoka2022-07-312-13/+26
|/
* can select validation of CRC during benchmarkYann Collet2022-07-291-4/+4
* added ability to skip checksum calculation when decoding LZ4 FramesYann Collet2022-07-292-11/+21
* implement decoder-only benchmark modeYann Collet2022-07-292-7/+7
* minor refactorYann Collet2022-07-292-37/+53