aboutsummaryrefslogtreecommitdiff
path: root/lib/lz4.c
AgeCommit message (Expand)Author
2018-04-12fixed : counting matches which overlap extDict and prefixtest4973
2018-04-12modified a few traces for debugtest4973
2018-04-11fixed LZ4_compress_fast_extState_fastReset()test4973
2018-04-11Merge branch 'dev' into lowAddrtest4973
2018-04-11Fix Silly Warning (const-ness in declaration has no effect on value types!)W. Felix Handte
2018-04-11Minor FixesW. Felix Handte
2018-04-11Add a LZ4_STATIC_LINKING_ONLY Macro to Guard Experimental APIsW. Felix Handte
2018-04-11Expose dictCtx Functionality in LZ4W. Felix Handte
2018-04-11Rename _extState_noReset -> _extState_fastReset and Edit CommentsW. Felix Handte
2018-04-11Remove Extraneous Assignment (clearedTable == 0)W. Felix Handte
2018-04-10Expose a Faster Stream Reset FunctionW. Felix Handte
2018-04-09fixed minor conversion warningtest4973
2018-04-09Merge branch 'dev' into lowAddrtest4973
2018-04-09Avoid Calling LZ4_prepareTable() in LZ4_compress_fast_continue()W. Felix Handte
2018-04-06Return to Allowing Early Returns in LZ4_compress_generic()W. Felix Handte
2018-04-05noticed a bug when re-using hash tabletest4973
2018-04-05fixed byPtr modetest4973
2018-04-05fixed byPtr match searchtest4973
2018-04-05fixed immediate match searchtest4973
2018-04-05changed LZ4_compress_generic() logictest4973
2018-04-05fixed lz4 compression starting at small addresstest4973
2018-03-21fix comment styleYann Collet
2018-03-14Restore the Other Old Streaming Functions in a Degraded FashionW. Felix Handte
2018-03-13Restore LZ4_sizeofStreamState, We Didn't Actually Need to Delete ItW. Felix Handte
2018-03-13Rename Enums and Add CommentW. Felix Handte
2018-03-13Whitespace FixesW. Felix Handte
2018-03-12Add NULL ChecksW. Felix Handte
2018-03-12Simpler Ternary StatementsW. Felix Handte
2018-03-12Renames and Comment FixesW. Felix Handte
2018-03-12Preserve currentOffset==0 When PossibleW. Felix Handte
2018-03-12Specialize _extState() for Clean Ctx Rather Than Calling _safeExtState()W. Felix Handte
2018-03-12Remove Switch In Favor of Ternary StatementW. Felix Handte
2018-03-12Further Avoid a dictionary==NULL CheckW. Felix Handte
2018-03-12Optimize Dict Check ConditionW. Felix Handte
2018-03-12Move to 4KB Cut-OffW. Felix Handte
2018-03-12Reset Table on Inputs Larger than 2KBW. Felix Handte
2018-03-12Avoid DictSmall Checks By Strategically Bumping CurrentOffsetW. Felix Handte
2018-03-12Restore DictIssue CheckW. Felix Handte
2018-03-12Avoid dictionary == NULL CheckW. Felix Handte
2018-03-12Replace calloc() Calls With malloc() Where PossibleW. Felix Handte
2018-03-12Copy the Dict Table Into the Context for Large CompressionsW. Felix Handte
2018-03-12Switch Current Offset to 1 Only When in External Dictionary Context ModeW. Felix Handte
2018-03-12Hoist Table Reset One Level UpW. Felix Handte
2018-03-12Set Dictionary Context Pointer Rather than Copying the Context InW. Felix Handte
2018-03-12Lookup Matches in Separate Dictionary ContextW. Felix Handte
2018-03-12Initialize Current Offset to 1W. Felix Handte
2018-03-12Avoid Resetting the Context When PossibleW. Felix Handte
2018-03-12Const-ify Table Arg to LZ4_getPosition(OnHash)W. Felix Handte
2018-03-12Add LZ4_compress_fast_safeExtState FunctionW. Felix Handte
2018-03-12Add a Table Type Field to LZ4_stream_tW. Felix Handte