summaryrefslogtreecommitdiffstats
path: root/lib/lz4.c
Commit message (Collapse)AuthorAgeFilesLines
* minor commentsYann Collet2016-08-201-17/+10
|
* minor refactorYann Collet2016-08-201-4/+2
|
* minor decompression speed gainsYann Collet2016-08-201-2/+5
|
* Use https wherever possibleBen Wiederhake2016-07-071-1/+1
|
* changed : default benchmark LZ4_decompress_safe()Yann Collet2016-06-291-7/+6
|
* Minor refactoring (code style)Yann Collet2016-06-291-50/+25
|
* Fixed : alignment warningYann Collet2016-06-291-3/+10
|
* minor refactoringYann Collet2016-06-291-10/+9
|
* very minor decompression speed gainYann Collet2016-06-291-2/+2
|
* minor code refactoringYann Collet2016-06-291-45/+25
|
* minor compression speed improvementYann Collet2016-06-291-3/+4
|
* minor refactoringYann Collet2016-06-291-8/+10
|
* minor refactoring (coding style)Yann Collet2016-06-291-140/+82
|
* fixed non-C99 compilersIrwan Djajadi2016-04-191-2/+4
|\
| * fixed non-C99 compilerIrwan Djajadi2016-04-191-3/+5
| |
* | Merge branch 'heapmode_alloc_failure_fix' into devIrwan Djajadi2016-04-191-0/+10
|\ \ | |/
| * alloc failure fixIrwan Djajadi2016-04-181-0/+10
| |
* | lz4cli: print library versionJohn Zhuge2016-04-011-0/+1
| |
* | Allow for safe in-place decodingJulius Werner2016-02-131-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a check to allow safe "in-place" decoding (meaning that the beginning of the source buffer partially overlaps the end of the destination buffer). This is usually possible as long as the output stops at least 15 bytes before the end of the input buffer (7 to account for the extra spill from LZ4_wildCopy, 4 for a possible block checksum, and 4 for the terminating block header), but in some pathological edge cases it could be possible for the output stream to overwrite a byte in the input stream before it gets decoded. With this patch the decoder will reliably detect those cases and return a decoding error. Signed-off-by: Julius Werner <jwerner@chromium.org>
* | heapmode macro option for lz4hcYann Collet2015-10-211-3/+3
| |
* | Updated Makefile and .travisYann Collet2015-09-011-1/+8
| |
* | New unalign access methodYann Collet2015-08-191-12/+41
| |
* | Slightly improved compression speed on ARMv6Yann Collet2015-08-161-11/+11
| |
* | Improved performance on ARMv6Yann Collet2015-08-161-15/+35
| |
* | minor simplification lz4_readarch()Yann Collet2015-08-061-12/+4
| |
* | minor refactorYann Collet2015-07-161-16/+15
| |
* | Slightly improved decompression speedYann Collet2015-07-161-5/+6
| | | | | | Slightly decreased decompression stack usage in 64-bits mode
* | sligthly improved decompression speedYann Collet2015-07-161-12/+12
|/
* Performance fix : big compression speed boost for clang (+30%)Yann Collet2015-05-211-1/+1
|
* Updated a few commentsYann Collet2015-05-121-1/+1
|
* Added : LZ4_compress_destSize()Yann Collet2015-05-061-4/+217
|
* Added compilation flag -Wcast-qualYann Collet2015-05-061-13/+13
|
* Fixed minor Visual warningYann Collet2015-05-031-1/+1
|
* New lz4 API, using LZ4_compress_fast()Yann Collet2015-05-031-60/+41
|
* Fixed bug 9318Yann Collet2015-05-021-4/+6
|
* streaming API : Improved ring buffer managementYann Collet2015-04-241-2/+1
|
* Added LZ4_compress_fast_extState()Yann Collet2015-04-231-16/+18
|
* Removed LZ4_compress() (obsolete) from lz4Yann Collet2015-04-211-1/+1
|
* Replace GCC_VERSION with LZ4_GCC_VERSIONTakayuki MATSUOKA2015-04-141-6/+6
|
* Fixed issue #84Yann Collet2015-04-121-6/+7
|
* fixed minor g++ warningYann Collet2015-04-121-1/+1
|
* Fixed a few Valgrind warningsYann Collet2015-04-121-2/+3
|
* Implemented obsolete warning messageYann Collet2015-04-111-8/+6
|
* Fixed a few warnings from -fsanitize=undefinedYann Collet2015-04-091-105/+27
|
* New LZ4_compress_safe() APIYann Collet2015-04-091-23/+16
|
* fullbench : tests of _limitedOutput variants intentionnally provides less ↵Yann Collet2015-04-011-27/+16
| | | | memory space than safe (LZ4_compressBound())
* simplified LZ4_compress_limitedOutput()Yann Collet2015-04-011-16/+3
|
* simplified LZ4_compress_withState()Yann Collet2015-04-011-26/+28
|
* simplified LZ4_compress()Yann Collet2015-04-011-38/+42
|
* Fix : minor warning under VisualYann Collet2015-03-311-1/+1
|