summaryrefslogtreecommitdiff
path: root/lib/lz4.c
AgeCommit message (Expand)AuthorFilesLines
2019-12-02faster decoding speed with VisualYann Collet1-3/+3
2019-09-21Have read_variable_length use fixed size typesNigel Tao1-2/+6
2019-08-09[LZ4_compress_destSize] Fix off-by-one errorNick Terrell1-1/+1
2019-08-06Only Bump Offset When Attaching Non-Null DictionaryW. Felix Handte1-15/+21
2019-08-06Add Attach Dict Debug LogW. Felix Handte1-0/+4
2019-08-06Make Attaching an Empty Dict Behave the Same as Using it DirectlyW. Felix Handte1-14/+15
2019-08-06silence msan warning when offset==0Yann Collet1-64/+65
2019-07-19Merge pull request #760 from terrelln/destSizeYann Collet1-1/+1
2019-07-18Fix LZ4_attach_dictionary with empty dictionaryNick Terrell1-1/+1
2019-07-18[LZ4_compress_destSize] Fix off-by-one error in fixNick Terrell1-1/+1
2019-07-17[LZ4_compress_destSize] Fix overflow conditionNick Terrell1-1/+1
2019-07-17[LZ4_compress_destSize] Fix rare data corruption bugNick Terrell1-0/+30
2019-07-17[LZ4_compress_destSize] Allow 2 more bytes of match lengthNick Terrell1-1/+1
2019-07-16Merge pull request #752 from terrelln/fuzzersYann Collet1-8/+41
2019-07-15[lz4] Fix bugs in partial decodingNick Terrell1-8/+41
2019-07-15ensure conformance with custom LZ4_DISTANCE_MAXYann Collet1-4/+9
2019-07-04Remove an useless declarationSylvestre Ledru1-1/+1
2019-06-28Fix out-of-bounds read of up to 64 KB in the pastNick Terrell1-2/+8
2019-06-04restored FORCE_INLINEYann Collet1-1/+0
2019-05-31Merge pull request #717 from lz4/inplaceYann Collet1-18/+18
2019-05-31decompress: changed final memcpy() into memmove()Yann Collet1-10/+13
2019-05-31FAST_DEC_LOOP: only did offset check in specific condition.Chenxi Mao1-2/+2
2019-05-29some more minor conversion warnings fixesYann Collet1-4/+4
2019-05-29ensure lz4.h can be included with or without LZ4_STATIC_LINKING_ONLY in any o...Yann Collet1-0/+1
2019-05-29added comments and macros for in-place (de)compressionYann Collet1-4/+0
2019-05-07enable LZ4_FAST_DEC_LOOP build macro on aarch64/GCC by defaultGeorge Prekas1-0/+5
2019-04-24several minor style changes recommended by clang-tidyYann Collet1-64/+73
2019-04-18fixed read-after input in LZ4_decompress_safe()Yann Collet1-28/+29
2019-04-17re-enable FORCE_INLINEYann Collet1-3/+0
2019-04-17fix out-of-bound read within LZ4_decompress_fast()Yann Collet1-2/+13
2019-04-17Fix AIX errors/warningsNorm Green1-0/+6
2019-04-15simplified output_directiveYann Collet1-15/+17
2019-04-15fix comma for pedanticYann Collet1-1/+1
2019-04-15unified limitedOutput_directiveYann Collet1-16/+15
2019-04-15fixed lz4frame with linked blocksYann Collet1-11/+9
2019-04-12fixed minor Visual warningsYann Collet1-2/+2
2019-04-11introduce LZ4_DISTANCE_MAX build macroYann Collet1-15/+20
2019-04-09modified LZ4_initStreamHC() to look like LZ4_initStream()Yann Collet1-0/+1
2019-04-08check some more initialization resultYann Collet1-1/+5
2019-04-08removed LZ4_stream_t alignment test on VisualYann Collet1-0/+8
2019-04-08LZ4_initStream() checks alignment restrictionYann Collet1-0/+7
2019-04-05created LZ4_initStream()Yann Collet1-5/+12
2019-04-03minor comments and reformattingYann Collet1-12/+17
2019-04-02fixed minor conversion warningsYann Collet1-14/+10
2019-04-02created LZ4_FAST_DEC_LOOP build macroYann Collet1-5/+16
2019-04-02fixed a few minor conversion warningsYann Collet1-20/+22
2019-02-11Merge pull request #645 from djwatson/optimize_decompress_genericYann Collet1-19/+245
2019-02-11decompress_generic: Limit fastpath to x86Dave Watson1-3/+9
2019-02-08decompress_generic: Add fastpath for small offsetsDave Watson1-19/+59
2019-02-08decompress_generic: Unroll loops a bit moreDave Watson1-7/+7