Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #503 from lz4/l120 | Yann Collet | 2018-04-19 | 1 | -24/+70 |
|\ | | | | | minor length reduction of several large lines | ||||
| * | modified indentation for consistency | Yann Collet | 2018-04-19 | 1 | -17/+33 |
| | | |||||
| * | minor length reduction of several large lines | Yann Collet | 2018-04-18 | 1 | -23/+53 |
| | | |||||
* | | Merge pull request #502 from lhacc1/dev | Yann Collet | 2018-04-19 | 1 | -0/+4 |
|\ \ | |/ |/| | Wrap likely/unlikely macroses with #ifndef | ||||
| * | Wrap likely/unlikely macroses with #ifndef | Dmitrii Rodionov | 2018-04-18 | 1 | -0/+4 |
| | | | | | | | | | | It prevent redefine error when project using lz4 has its own likely/unlikely macroses. | ||||
* | | fixed LZ4_compress_fast_extState_fastReset() in 32-bit mode | Yann Collet | 2018-04-17 | 1 | -2/+2 |
| | | |||||
* | | fix dictDelta setting error | Yann Collet | 2018-04-17 | 1 | -1/+1 |
| | | | | | | | | wrong test | ||||
* | | fix matchIndex overflow | Yann Collet | 2018-04-17 | 1 | -12/+4 |
| | | | | | | | | can happen with dictCtx | ||||
* | | Merge branch 'dev' into lowAddr | Yann Collet | 2018-04-17 | 1 | -2/+9 |
|\ \ | |/ | |||||
| * | Always Bump Offset by 64 KB in LZ4_loadDict() | W. Felix Handte | 2018-04-17 | 1 | -2/+9 |
| | | | | | | | | | | This actually ensures the guarantee referred to in the comment in LZ4_compress_fast_continue(). | ||||
* | | fixed dictCtx compression | Yann Collet | 2018-04-17 | 1 | -7/+12 |
| | | |||||
* | | edited a few traces for debugging | Yann Collet | 2018-04-17 | 1 | -7/+7 |
| | | |||||
* | | fixed minor format warnings | Yann Collet | 2018-04-16 | 1 | -3/+3 |
| | | |||||
* | | fixed gcc performance regression | Yann Collet | 2018-04-16 | 1 | -2/+4 |
| | | |||||
* | | fixed minor unused variable warning | Yann Collet | 2018-04-13 | 1 | -3/+0 |
| | | |||||
* | | added comment on variables required after _next_match | Yann Collet | 2018-04-13 | 1 | -0/+8 |
| | | |||||
* | | fixed potential ptrdiff_t overflow (32-bits mode) | Yann Collet | 2018-04-13 | 1 | -14/+11 |
| | | | | | | | | Also removed pointer comparison, which should solve #485 | ||||
* | | compatibility with gcc-4.4 string.h version | Cyan4973 | 2018-04-13 | 1 | -3/+3 |
| | | | | | | | | | | | | | | Someone found it would be a great idea to define there a global variable under the very generic name "index". Cause problem with shadow warnings, so no variable can be named "index" now ... Also : automatically update API manual | ||||
* | | fixed : counting matches which overlap extDict and prefix | test4973 | 2018-04-12 | 1 | -10/+17 |
| | | |||||
* | | modified a few traces for debug | test4973 | 2018-04-12 | 1 | -2/+3 |
| | | |||||
* | | fixed LZ4_compress_fast_extState_fastReset() | test4973 | 2018-04-11 | 1 | -8/+7 |
| | | |||||
* | | Merge branch 'dev' into lowAddr | test4973 | 2018-04-11 | 1 | -48/+55 |
|\ \ | |/ | |||||
| * | Fix Silly Warning (const-ness in declaration has no effect on value types!) | W. Felix Handte | 2018-04-11 | 1 | -1/+1 |
| | | |||||
| * | Minor Fixes | W. Felix Handte | 2018-04-11 | 1 | -9/+13 |
| | | |||||
| * | Add a LZ4_STATIC_LINKING_ONLY Macro to Guard Experimental APIs | W. Felix Handte | 2018-04-11 | 1 | -0/+1 |
| | | |||||
| * | Expose dictCtx Functionality in LZ4 | W. Felix Handte | 2018-04-11 | 1 | -0/+4 |
| | | |||||
| * | Rename _extState_noReset -> _extState_fastReset and Edit Comments | W. Felix Handte | 2018-04-11 | 1 | -11/+12 |
| | | |||||
| * | Remove Extraneous Assignment (clearedTable == 0) | W. Felix Handte | 2018-04-11 | 1 | -1/+0 |
| | | |||||
| * | Expose a Faster Stream Reset Function | W. Felix Handte | 2018-04-10 | 1 | -25/+28 |
| | | |||||
| * | Avoid Calling LZ4_prepareTable() in LZ4_compress_fast_continue() | W. Felix Handte | 2018-04-09 | 1 | -20/+14 |
| | | |||||
* | | fixed minor conversion warning | test4973 | 2018-04-10 | 1 | -1/+2 |
| | | | | | | | | ptr diff -> U32 | ||||
* | | Merge branch 'dev' into lowAddr | test4973 | 2018-04-09 | 1 | -21/+17 |
|\ \ | |/ | |||||
| * | Return to Allowing Early Returns in LZ4_compress_generic() | W. Felix Handte | 2018-04-06 | 1 | -21/+17 |
| | | | | | | | | | | | | Or: `goto` Considered Harmful Or: https://xkcd.com/292/ | ||||
* | | noticed a bug when re-using hash table | test4973 | 2018-04-06 | 1 | -3/+4 |
| | | | | | | | | ./fuzzer -vv -s4217 -t7518 | ||||
* | | fixed byPtr mode | test4973 | 2018-04-06 | 1 | -22/+25 |
| | | | | | | | | | | | | switch to byU32 when src address is < 64K note : byPtr is still useful in 32-bits, as it's about ~10% faster | ||||
* | | fixed byPtr match search | test4973 | 2018-04-06 | 1 | -1/+2 |
| | | |||||
* | | fixed immediate match search | test4973 | 2018-04-06 | 1 | -7/+5 |
| | | |||||
* | | changed LZ4_compress_generic() logic | test4973 | 2018-04-05 | 1 | -70/+100 |
| | | | | | | | | | | | | to use indexes (U32) instead of Ptr. byPtr is still present. | ||||
* | | fixed lz4 compression starting at small address | test4973 | 2018-04-05 | 1 | -3/+67 |
|/ | | | | when using byU32 and byU16 modes | ||||
* | fix comment style | Yann Collet | 2018-03-21 | 1 | -1/+1 |
| | |||||
* | Restore the Other Old Streaming Functions in a Degraded Fashion | W. Felix Handte | 2018-03-14 | 1 | -0/+19 |
| | |||||
* | Restore LZ4_sizeofStreamState, We Didn't Actually Need to Delete It | W. Felix Handte | 2018-03-13 | 1 | -0/+3 |
| | |||||
* | Rename Enums and Add Comment | W. Felix Handte | 2018-03-13 | 1 | -19/+40 |
| | |||||
* | Whitespace Fixes | W. Felix Handte | 2018-03-13 | 1 | -45/+44 |
| | |||||
* | Add NULL Checks | W. Felix Handte | 2018-03-12 | 1 | -0/+3 |
| | |||||
* | Simpler Ternary Statements | W. Felix Handte | 2018-03-12 | 1 | -2/+2 |
| | |||||
* | Renames and Comment Fixes | W. Felix Handte | 2018-03-12 | 1 | -10/+22 |
| | |||||
* | Preserve currentOffset==0 When Possible | W. Felix Handte | 2018-03-12 | 1 | -2/+6 |
| | |||||
* | Specialize _extState() for Clean Ctx Rather Than Calling _safeExtState() | W. Felix Handte | 2018-03-12 | 1 | -5/+19 |
| | |||||
* | Remove Switch In Favor of Ternary Statement | W. Felix Handte | 2018-03-12 | 1 | -17/+1 |
| |