platform/upstream/lz4.git
2018-04-13 Yann Colletfixed minor unused variable warning
2018-04-13 Yann Colletadded comment on variables required after _next_match
2018-04-13 Yann Colletfixed potential ptrdiff_t overflow (32-bits mode)
2018-04-13 Cyan4973compatibility with gcc-4.4 string.h version
2018-04-13 Cyan4973added sudo rights for low-mem-address tests
2018-04-12 test4973fixed : counting matches which overlap extDict and...
2018-04-12 test4973modified a few traces for debug
2018-04-11 test4973fixed LZ4_compress_fast_extState_fastReset()
2018-04-11 test4973Merge branch 'dev' into lowAddr
2018-04-11 Yann ColletMerge pull request #492 from felixhandte/avoid-prepare...
2018-04-11 W. Felix HandteFix Silly Warning (const-ness in declaration has no...
2018-04-11 W. Felix HandteMinor Fixes
2018-04-11 W. Felix HandteAdd a LZ4_STATIC_LINKING_ONLY Macro to Guard Experiment...
2018-04-11 W. Felix HandteExpose dictCtx Functionality in LZ4
2018-04-11 W. Felix HandteRename _extState_noReset -> _extState_fastReset and...
2018-04-11 W. Felix HandteRemove Extraneous Assignment (clearedTable == 0)
2018-04-10 W. Felix HandteExpose a Faster Stream Reset Function
2018-04-10 test4973fix minor conversion warning
2018-04-10 test4973fixed minor conversion warning
2018-04-09 test4973Merge branch 'dev' into lowAddr
2018-04-09 W. Felix HandteAvoid Calling LZ4_prepareTable() in LZ4_compress_fast_c...
2018-04-07 Yann ColletMerge pull request #494 from felixhandte/kill-goto
2018-04-06 W. Felix HandteReturn to Allowing Early Returns in LZ4_compress_generic()
2018-04-06 Yann ColletMerge pull request #493 from lz4/statusLine
2018-04-06 Yann Colletfixed DISPLAYUPDATE()
2018-04-06 test4973noticed a bug when re-using hash table
2018-04-06 test4973added low-memory address test to travis
2018-04-06 test4973fixed byPtr mode
2018-04-06 test4973fixed byPtr match search
2018-04-06 test4973fixed immediate match search
2018-04-05 test4973changed LZ4_compress_generic() logic
2018-04-05 test4973fixed lz4 compression starting at small address
2018-04-04 test4973Merge branch 'dev' into lowAddr
2018-04-02 Yann ColletMerge pull request #490 from kenjichanhkg/dev
2018-04-02 Kenji Chanadded vs2017 projects
2018-03-21 Yann ColletMerge pull request #486 from felixhandte/fix-test-makef...
2018-03-21 Yann ColletMerge pull request #487 from felixhandte/better-obsolet...
2018-03-21 W. Felix HandteAlso Fix a Comment
2018-03-21 W. Felix HandteBetter Describe Functionality of Obsolete Streaming...
2018-03-21 W. Felix HandteAdd Dependency to Fix Parallel `make test` Runs
2018-03-21 Yann Colletadded c90 test to c_standards
2018-03-21 test4973added low address fuzzer tests
2018-03-21 Yann Colletfix comment style
2018-03-20 Yann Colletbench: introduced hidden command -S
2018-03-19 Yann ColletMerge branch 'dev' of github.com:Cyan4973/lz4 into dev
2018-03-19 Yann Colletminor man fix on clevels
2018-03-19 Yann ColletMerge pull request #484 from lz4/fasterDict
2018-03-19 Yann ColletMerge pull request #406 from felixhandte/ref-dict-table
2018-03-14 W. Felix HandteRemove Framebench Tool
2018-03-14 W. Felix HandteMove LZ4_compress_fast_extState_noReset Declaration...
2018-03-14 W. Felix HandteRestore the Other Old Streaming Functions in a Degraded...
2018-03-13 W. Felix HandteSwitch ALLOC() to ALLOC_AND_ZERO() to Paper Over Existi...
2018-03-13 W. Felix HandteSplit lz4CtxLevel into Two Fields
2018-03-13 W. Felix HandteAnother Allocation Fail Check
2018-03-13 W. Felix HandteRestore LZ4_sizeofStreamState, We Didn't Actually Need...
2018-03-13 W. Felix HandteRestore checkTag Cleaning
2018-03-13 W. Felix HandteRename Enums and Add Comment
2018-03-13 W. Felix HandteWhitespace Fixes
2018-03-12 W. Felix HandteAdd NULL Checks
2018-03-12 W. Felix HandteSimpler Ternary Statements
2018-03-12 W. Felix HandteRenames and Comment Fixes
2018-03-12 W. Felix HandteHoist LZ4F Dictionary Setup into Helper LZ4F_applyCDict()
2018-03-12 W. Felix HandteMinor Style Fixes
2018-03-12 W. Felix HandtePreserve currentOffset==0 When Possible
2018-03-12 W. Felix HandteSpecialize _extState() for Clean Ctx Rather Than Callin...
2018-03-12 W. Felix HandteRemove Switch In Favor of Ternary Statement
2018-03-12 W. Felix HandteFurther Avoid a dictionary==NULL Check
2018-03-12 W. Felix HandteOptimize Dict Check Condition
2018-03-12 W. Felix HandteMove to 4KB Cut-Off
2018-03-12 W. Felix HandteReset Table on Inputs Larger than 2KB
2018-03-12 W. Felix HandteAvoid DictSmall Checks By Strategically Bumping Current...
2018-03-12 W. Felix HandteRestore DictIssue Check
2018-03-12 W. Felix HandteAvoid dictionary == NULL Check
2018-03-12 W. Felix HandteReplace calloc() Calls With malloc() Where Possible
2018-03-12 W. Felix HandteCopy the Dict Table Into the Context for Large Compressions
2018-03-12 W. Felix HandteMake LZ4F_compressFrame_usingCDict Take a Compression...
2018-03-12 W. Felix HandteSwitch Current Offset to 1 Only When in External Dictio...
2018-03-12 W. Felix HandteHoist Table Reset One Level Up
2018-03-12 W. Felix HandteSet Dictionary Context Pointer Rather than Copying...
2018-03-12 W. Felix HandteLookup Matches in Separate Dictionary Context
2018-03-12 W. Felix HandteInitialize Current Offset to 1
2018-03-12 W. Felix HandteOnly Re-Alloc / Reset When Needed When Switching Betwee...
2018-03-12 W. Felix HandteAvoid Resetting the Context When Possible
2018-03-12 W. Felix HandteConst-ify Table Arg to LZ4_getPosition(OnHash)
2018-03-12 W. Felix HandteAdd LZ4_compress_fast_safeExtState Function
2018-03-12 W. Felix HandteAdd Bounds Check to locateBuffDiff
2018-03-12 W. Felix HandteAdd a Table Type Field to LZ4_stream_t
2018-03-12 W. Felix HandteRemove Obsolete Stream Functions to Free Space in LZ4_s...
2018-03-12 W. Felix HandteAllow Empty Dictionaries
2018-03-12 W. Felix HandteAdd a Benchmarking Tool For Compression with Context...
2018-03-09 Yann ColletMerge pull request #483 from lz4/dev
2018-03-09 Yann Colletfix #482: change CFLAGS to CXXFLAGS
2018-03-09 Yann Colletfix #481: ensure liblz4.a dependency for `make all`
2018-02-28 Yann Colletupdated LZ4F_compressBound() documentation
2018-02-27 Yann ColletMerge pull request #479 from lz4/check
2018-02-26 Yann Colletadded target make check
2018-02-26 Yann ColletMerge pull request #478 from lz4/mergeOpt
2018-02-26 Yann Colletbumped version number to v1.8.2
2018-02-26 Yann Colletupdate code comment on LZ4 streaming interface
2018-02-26 Yann ColletMerge pull request #476 from lz4/mflimit
next