aboutsummaryrefslogtreecommitdiff
path: root/lib/lz4hc.c
AgeCommit message (Expand)Author
2018-04-19Don't Bother Clearing Chain Table for Working ContextsW. Felix Handte
2018-04-19Push Previous Compression Offsets into the PastW. Felix Handte
2018-04-19Shift Dict Limit Checks out of the LoopW. Felix Handte
2018-04-19Clear Tables on Dict LoadW. Felix Handte
2018-04-19Only Perform Dict Lookup if Attempts RemainW. Felix Handte
2018-04-19Avoid Resetting Chain TableW. Felix Handte
2018-04-19Avoid Resetting Hash TableW. Felix Handte
2018-04-19Perform Lookups into the Dictionary ContextW. Felix Handte
2018-04-19Set dictCtx Rather than memcpy'ing CtxW. Felix Handte
2018-04-19Fully Bounds Check Hash Table ReadsW. Felix Handte
2018-04-19Add Debug Log Statements to HCW. Felix Handte
2018-04-12modified a few traces for debugtest4973
2018-04-04Merge branch 'dev' into lowAddrtest4973
2018-03-12Replace calloc() Calls With malloc() Where PossibleW. Felix Handte
2018-02-25merge lz4opt.h into lz4hc.cYann Collet
2018-02-24edge case : compress up to end-mflimit (12 bytes)Yann Collet
2018-02-20added one assert()Yann Collet
2018-02-12slight hc speed benefit (~+1%)Yann Collet
2018-02-11slightly improved hc compression speed (+~1-2%)Yann Collet
2018-02-05fuzzer: added low address compression testYann Collet
2018-01-22[lz4hc] level == 0 means default, not level 1Nick Terrell
2018-01-06Merge pull request #434 from lz4/patternYann Collet
2017-12-22lz4opt supports _destSizeYann Collet
2017-12-22conditional pattern analysisYann Collet
2017-12-20new level 10Yann Collet
2017-11-08lz4opt: simplified match finder invocation to LZ4HC_FindLongerMatch()Yann Collet
2017-11-08added code commentsYann Collet
2017-11-07fixed LZ4HC_reverseCountPattern()Yann Collet
2017-11-07removed the ip++ at the beginning of blockYann Collet
2017-11-07removed legacy version of LZ4HC_InsertAndFindBestMatch()Yann Collet
2017-11-07ensure `pattern` is a 1-byte repetitionYann Collet
2017-11-07removed useless `(1 && ...)` conditionYann Collet
2017-11-07improved LZ4HC_reverseCountPattern() :Yann Collet
2017-11-07fixed LZ4HC_countPattern()Yann Collet
2017-11-03fixed minor static analyzer warningYann Collet
2017-11-03unified HC levelsYann Collet
2017-11-03moved ctx->end handling from parsersYann Collet
2017-11-03removed ctx->searchNumYann Collet
2017-11-03LZ4_compress_HC_continue_destSize() now compatible with optimal parserYann Collet
2017-11-03removed code and reference to binary tree match finderYann Collet
2017-11-02new level 11 uses 512 attemptsYann Collet
2017-11-02more generic skip formulaYann Collet
2017-11-02small adaptations for intermediate level 11Yann Collet
2017-11-02partial search, while preserving compression ratioYann Collet
2017-11-02fixed last lost bytes in maximal modeYann Collet
2017-11-02changed strategy : opt[] path is complete after each matchYann Collet
2017-10-25added hash chain with conditional lengthYann Collet
2017-10-20lz4opt: added hash chain searchYann Collet
2017-10-09fused getLongerMatch and getWiderMatchYann Collet
2017-10-09re-inserted last byte test in widerMatchYann Collet