Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | | * | lz4opt: simplified match finder invocation to LZ4HC_FindLongerMatch() | Yann Collet | 2017-11-09 | 2 | -21/+12 | |
| | | * | added code comments | Yann Collet | 2017-11-08 | 1 | -5/+8 | |
| | | * | fixed LZ4HC_reverseCountPattern() | Yann Collet | 2017-11-08 | 1 | -6/+5 | |
| | | * | removed the ip++ at the beginning of block | Yann Collet | 2017-11-08 | 2 | -3/+0 | |
| | | * | removed legacy version of LZ4HC_InsertAndFindBestMatch() | Yann Collet | 2017-11-07 | 1 | -53/+1 | |
| | | * | ensure `pattern` is a 1-byte repetition | Yann Collet | 2017-11-07 | 1 | -1/+2 | |
| | | * | removed useless `(1 && ...)` condition | Yann Collet | 2017-11-07 | 1 | -3/+4 | |
| | | * | improved LZ4HC_reverseCountPattern() : | Yann Collet | 2017-11-07 | 1 | -3/+7 | |
| | | * | fixed LZ4HC_countPattern() | Yann Collet | 2017-11-07 | 1 | -5/+19 | |
| | | * | fixed minor static analyzer warning | Yann Collet | 2017-11-03 | 1 | -1/+0 | |
| | | * | minor comment edit | Yann Collet | 2017-11-03 | 3 | -33/+29 | |
| | | * | unified HC levels | Yann Collet | 2017-11-03 | 3 | -16/+11 | |
| | | * | moved ctx->end handling from parsers | Yann Collet | 2017-11-03 | 2 | -3/+2 | |
| | | * | removed ctx->searchNum | Yann Collet | 2017-11-03 | 3 | -26/+12 | |
| | | * | LZ4_compress_HC_continue_destSize() now compatible with optimal parser | Yann Collet | 2017-11-03 | 3 | -12/+13 | |
| | | * | removes matches[] table | Yann Collet | 2017-11-03 | 1 | -73/+67 | |
| | | * | removed useless parameter from hash chain matchfinder | Yann Collet | 2017-11-03 | 1 | -5/+4 | |
| | | * | removed code and reference to binary tree match finder | Yann Collet | 2017-11-03 | 3 | -132/+6 | |
| | | * | improved level 11 speed | Yann Collet | 2017-11-03 | 1 | -2/+4 | |
| | | * | optimized skip strategy for level 12 | Yann Collet | 2017-11-03 | 1 | -3/+6 | |
| | | * | new level 11 uses 512 attempts | Yann Collet | 2017-11-03 | 1 | -1/+1 | |
| | | * | more generic skip formula | Yann Collet | 2017-11-03 | 2 | -14/+5 | |
| | | * | small adaptations for intermediate level 11 | Yann Collet | 2017-11-02 | 2 | -7/+6 | |
| | | * | partial search, while preserving compression ratio | Yann Collet | 2017-11-02 | 2 | -2/+16 | |
| | | * | searching match leading strictly farther does not work | Yann Collet | 2017-11-02 | 1 | -1/+1 | |
| | | * | fixed last lost bytes in maximal mode | Yann Collet | 2017-11-02 | 3 | -12/+20 | |
| | | * | changed strategy : opt[] path is complete after each match | Yann Collet | 2017-11-02 | 2 | -40/+71 | |
| | | * | Merge branch 'dev' into btopt | Yann Collet | 2017-11-01 | 8 | -80/+338 | |
| | | |\ | ||||||
| | | * | | fixed minor overflow mistake in optimal parser | Yann Collet | 2017-10-31 | 1 | -1/+5 | |
| | | * | | fixed minor initialization warning | Yann Collet | 2017-10-30 | 1 | -1/+1 | |
| | | * | | added hash chain with conditional length | Yann Collet | 2017-10-25 | 2 | -10/+2 | |
| | | * | | lz4opt: added hash chain search | Yann Collet | 2017-10-21 | 3 | -24/+63 | |
| | | * | | switched many types to int | Yann Collet | 2017-10-20 | 1 | -38/+37 | |
| | | * | | removed SET_PRICE macro | Yann Collet | 2017-10-20 | 1 | -17/+14 | |
| | | * | | removed one macro usage | Yann Collet | 2017-10-20 | 1 | -4/+11 | |
| | | * | | minor refactor | Yann Collet | 2017-10-20 | 1 | -28/+35 | |
| | | * | | lz4opt: refactor sequence reverse traversal | Yann Collet | 2017-10-20 | 1 | -10/+20 | |
| | | * | | refactor variable matchnum | Yann Collet | 2017-10-20 | 1 | -14/+14 | |
| | | * | | simplified initial cost conditions | Yann Collet | 2017-10-20 | 1 | -10/+15 | |
| | | * | | added assert | Yann Collet | 2017-10-19 | 2 | -1/+9 | |
| | | * | | renamed last_pos into last_match_pos | Yann Collet | 2017-10-19 | 1 | -15/+15 | |
| | | * | | simplified early exit when single solution | Yann Collet | 2017-10-19 | 1 | -5/+5 | |
| | | * | | fused getLongerMatch and getWiderMatch | Yann Collet | 2017-10-09 | 1 | -1/+1 | |
| | | * | | re-inserted last byte test in widerMatch | Yann Collet | 2017-10-09 | 1 | -19/+22 | |
| | | * | | early out is not better | Yann Collet | 2017-10-09 | 2 | -2/+1 | |
| | | * | | optional fuse | Yann Collet | 2017-10-09 | 1 | -68/+53 | |
| | | * | | improved search of rep-1 patterns | Yann Collet | 2017-10-09 | 1 | -27/+131 | |
| | | * | | insertAndFindBestMatch defers to insertAndGetWiderMatch | Yann Collet | 2017-10-09 | 1 | -3/+13 | |
| | * | | | Merge pull request #418 from lz4/fasterCount | Yann Collet | 2017-11-07 | 1 | -2/+11 | |
| | |\ \ \ | ||||||
| | | * | | | added LZ4_FORCEINLINE to counter gcc regression | Yann Collet | 2017-11-07 | 1 | -1/+2 | |