summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* added constant TRAILING_LITERALSYann Collet2017-11-091-5/+6
* lz4opt: simplified match finder invocation to LZ4HC_FindLongerMatch()Yann Collet2017-11-092-21/+12
* added code commentsYann Collet2017-11-081-5/+8
* fixed LZ4HC_reverseCountPattern()Yann Collet2017-11-081-6/+5
* removed the ip++ at the beginning of blockYann Collet2017-11-082-3/+0
* removed legacy version of LZ4HC_InsertAndFindBestMatch()Yann Collet2017-11-071-53/+1
* ensure `pattern` is a 1-byte repetitionYann Collet2017-11-071-1/+2
* removed useless `(1 && ...)` conditionYann Collet2017-11-071-3/+4
* improved LZ4HC_reverseCountPattern() :Yann Collet2017-11-071-3/+7
* fixed LZ4HC_countPattern()Yann Collet2017-11-071-5/+19
* fixed minor static analyzer warningYann Collet2017-11-031-1/+0
* minor comment editYann Collet2017-11-033-33/+29
* unified HC levelsYann Collet2017-11-033-16/+11
* moved ctx->end handling from parsersYann Collet2017-11-032-3/+2
* removed ctx->searchNumYann Collet2017-11-033-26/+12
* LZ4_compress_HC_continue_destSize() now compatible with optimal parserYann Collet2017-11-033-12/+13
* removes matches[] tableYann Collet2017-11-031-73/+67
* removed useless parameter from hash chain matchfinderYann Collet2017-11-031-5/+4
* removed code and reference to binary tree match finderYann Collet2017-11-033-132/+6
* improved level 11 speedYann Collet2017-11-031-2/+4
* optimized skip strategy for level 12Yann Collet2017-11-031-3/+6
* new level 11 uses 512 attemptsYann Collet2017-11-031-1/+1
* more generic skip formulaYann Collet2017-11-032-14/+5
* small adaptations for intermediate level 11Yann Collet2017-11-022-7/+6
* partial search, while preserving compression ratioYann Collet2017-11-022-2/+16
* searching match leading strictly farther does not workYann Collet2017-11-021-1/+1
* fixed last lost bytes in maximal modeYann Collet2017-11-023-12/+20
* changed strategy : opt[] path is complete after each matchYann Collet2017-11-022-40/+71
* Merge branch 'dev' into btoptYann Collet2017-11-018-80/+338
|\
| * Merge pull request #408 from terrelln/timeYann Collet2017-10-312-41/+110
| |\
| | * [bench] Use higher resolution timer on POSIXNick Terrell2017-10-172-41/+110
| * | Merge pull request #412 from mikir/symbolsVisibilityYann Collet2017-10-301-7/+11
| |\ \ | | |/ | |/|
| | * Separated visibility from LZ4LIB_API macro.mikir2017-10-301-7/+11
| |/
| * lz4cli : minor rewrite of lz4c legacy commandsYann Collet2017-10-151-12/+13
| * Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2017-10-151-1/+34
| |\
| | * Merge pull request #407 from odaira/useO2ppc64leYann Collet2017-10-131-1/+34
| | |\
| | | * Use the optimization level of O2 for the decompression functions on ppc64le w...Rei Odaira2017-10-131-1/+34
| | |/
| * | lz4cli : removed extension artefactsYann Collet2017-10-151-15/+7
| |/
| * Merge pull request #403 from felixhandte/lz4-cli-dict-support-testsYann Collet2017-10-104-5/+164
| |\
| | * Read the Dictionary into a Circular BufferW. Felix Handte2017-10-101-22/+49
| | * Add some tests verifying command line dictionary functionalityW. Felix Handte2017-10-101-1/+28
| | * Add Dictionary Support to the Command Line ToolW. Felix Handte2017-10-103-4/+109
* | | fixed minor overflow mistake in optimal parserYann Collet2017-10-311-1/+5
* | | fixed minor initialization warningYann Collet2017-10-301-1/+1
* | | added hash chain with conditional lengthYann Collet2017-10-252-10/+2
* | | lz4opt: added hash chain searchYann Collet2017-10-213-24/+63
* | | switched many types to intYann Collet2017-10-201-38/+37
* | | removed SET_PRICE macroYann Collet2017-10-201-17/+14
* | | removed one macro usageYann Collet2017-10-201-4/+11
* | | minor refactorYann Collet2017-10-201-28/+35