]> git.ipfire.org Git - thirdparty/zstd.git/shortlog
thirdparty/zstd.git
2020-10-14  senhuang42Clarify argument names, fix DEBUGLOG() statements 2357/head
2020-10-14  senhuang42Adjust match backwards count args
2020-10-14  senhuang42Introduce, implement, and call ZSTD_ldm_countBackwardsM...
2020-10-13  Nick TerrellMerge pull request #2356 from bsdimp/neon
2020-10-13  Yann ColletMerge pull request #2281 from likema/fix-aix-51
2020-10-13  Yann ColletMerge pull request #2341 from senhuang42/ldm_optimized_...
2020-10-13  Warner Loshaarch64: use __ARM_NEON instead of __aarch64__ to contr... 2356/head
2020-10-13  Nick TerrellMerge pull request #2337 from terrelln/adjust-params
2020-10-12  Nick Terrell[minor] Improve docs and add an assert in response... 2337/head
2020-10-12  Nick TerrellFix ZSTD_adjustCParams_internal() to handle dictionary...
2020-10-12  Nick Terrell[minor improvement] Pass 0 as the content size in the DDS
2020-10-12  Nick Terrell[minor improvement] Pass dictSize when selecting parameters
2020-10-12  Nick Terrell[refactor] Remove ZSTD_resetCStream_internal()
2020-10-12  Nick Terrell[bug] Fix dictContentType when reprocessing cdict
2020-10-09  senhuang42Require LDM matches to be strictly greater in length 2341/head
2020-10-09  Like MaFix building on AIX 5.1 2281/head
2020-10-09  Yann ColletMerge pull request #2329 from senhuang42/prevent_summar...
2020-10-09  Yann ColletMerge pull request #2328 from marxin/zstd-pool-api
2020-10-09  Yann ColletMerge pull request #2303 from senhuang42/let_cdict_take...
2020-10-09  Yann ColletMerge pull request #2319 from facebook/fullbench_stream2
2020-10-07  senhuang42Define kNullRawSeqStore for every file
2020-10-07  senhuang42Change matchState_t::ldmSeqStore to pointer
2020-10-07  senhuang42Move posInSequence correction to correct location
2020-10-07  senhuang42Replace offCode of largest match if ldm's offCode is...
2020-10-07  senhuang42Refactor usage of ms->ldmSeqStore so that it is not...
2020-10-07  senhuang42Refactor separate ldm variables all into one struct
2020-10-07  senhuang42Use kNullRawSeqStore constant in zstdmt_compress.c
2020-10-07  senhuang42Remove bubbling down matches with longer offCode and...
2020-10-07  senhuang42Disable LDM minMatch adjustment when using opt parser
2020-10-07  senhuang42Enable inclusion of mid-flight LDMs in opt parser
2020-10-07  senhuang42Correct incorrect offcode calculation
2020-10-07  senhuang42Fix static analyze fuzzer.c error
2020-10-07  senhuang42Add explicit conversion of size_t to U32
2020-10-07  senhuang42Add cSize regression test to fuzzer.c
2020-10-07  senhuang42Prefix new static ldm helpers with ZSTD_opt
2020-10-07  senhuang42Add DEBUGLOG() calls in ldm helpers
2020-10-07  senhuang42Make function descriptions more accurate
2020-10-07  senhuang42Improve documentation of relevant structs
2020-10-07  senhuang42Correct matchLength calculation and remove unnecessary...
2020-10-07  senhuang42Reset ldmSeqStore after initStats_ultra() pass for...
2020-10-07  senhuang42Refactor existing functions to use posInSequence
2020-10-07  senhuang42Adjustments to ldm_calculateMatchRange() to calculate...
2020-10-07  senhuang42Add ldm_calculateMatchRange() function
2020-10-07  senhuang42Remove rawSeqStore.base and add rawSeqStore.posInSequence
2020-10-07  senhuang42Add unit tests into playTests.sh
2020-10-07  senhuang42Prevent duplicate LDMs from being inserted
2020-10-07  senhuang42Add extra bounds check to prevent heap access after...
2020-10-07  senhuang42Address mixed variables C90 warning
2020-10-07  senhuang42ldm_getNextMatch fixed return values
2020-10-07  senhuang42Cleanups, add comments and explanations
2020-10-07  senhuang42Fixed sifting algorithm
2020-10-07  senhuang42Fixed end of match boundary update issues
2020-10-07  senhuang42Add proper bounds check on adding ldms
2020-10-07  senhuang42Add a function ldm_voidSequences()
2020-10-07  senhuang42Fix function argument to getNextMatch()
2020-10-07  senhuang42Adjustments to no longer segfault on nci
2020-10-07  senhuang42Add base adjustment correction
2020-10-07  senhuang42Add initial getNextMatch() in opt parser
2020-10-07  senhuang42Added more debugging
2020-10-07  senhuang42Add re-copying of ldmSeqStore after processing
2020-10-07  senhuang42Add debug statements, flesh out functions
2020-10-07  senhuang42Get zstd to build with new functions and callsites...
2020-10-07  senhuang42Implement part of ldm_maybeAddLdm()
2020-10-07  senhuang42Implement ldm_getNextMatch()
2020-10-07  senhuang42Implement basic splitSequence and skipSequence functions
2020-10-07  senhuang42Flesh out required args for ldm_handleLdm()
2020-10-07  senhuang42Add callsites to appropriate locations in ..opt_generic()
2020-10-07  senhuang42Add ldm helper function declarations into opt parser
2020-10-07  senhuang42Modify codepath to use opt parser exclusively if the...
2020-10-07  senhuang42Add rawSeqStore to match state
2020-10-07  senhuang42Add callsites to zstdcli.c and tests to playTests.sh 2329/head
2020-10-07  senhuang42Add hasStdoutOutput setter to fileio.h
2020-10-07  senhuang42Fixed logic for stdout output
2020-10-07  senhuang42Add new stdoutOutput field
2020-10-07  Martin LiskaAllow external creation of POOLs that can be shared. 2328/head
2020-10-06  Yann ColletMerge pull request #2330 from senhuang42/fix_stdinout_e...
2020-10-02  Nick TerrellMerge pull request #2338 from terrelln/comments
2020-10-02  Nick TerrellMerge pull request #2333 from terrelln/stable-dst
2020-10-01  Nick TerrellReset all decompression parameters in ZSTD_DCtx_reset() 2333/head
2020-10-01  Nick TerrellAdd comments to ZSTD_getLowest{Match,Prefix}Index() 2338/head
2020-09-30  Yann ColletMerge pull request #2317 from animalize/msvc_inline
2020-09-30  Yann ColletMerge pull request #2321 from senhuang42/disallow_repco...
2020-09-30  Yann ColletMerge pull request #2322 from senhuang42/guard_against_...
2020-09-29  Nick TerrellMerge pull request #2326 from terrelln/kernel-test-fix
2020-09-28  senhuang42Modify error messages on console input/output 2330/head
2020-09-25  senhuang42Fix Stdin typo 2322/head
2020-09-25  Yann ColletMerge pull request #2310 from senhuang42/fix_multifile_...
2020-09-25  Nick Terrell[superblock] Reduce stack usage by correctly sizing... 2326/head
2020-09-25  Nick Terrell[lib] Add ZSTD_COMPRESS_HEAPMODE tuning parameter
2020-09-25  Nick Terrell[freestanding] Improve macro resolution to handle ...
2020-09-25  Nick TerrellAllow user to override ASAN/MSAN detection
2020-09-25  Nick TerrellRemove call to memset
2020-09-25  Nick Terrell[linux-kernel] Avoid including <string.h> in the tests
2020-09-25  Nick TerrellReorganize zstd_deps.h and mem.h + replace mem.h for...
2020-09-24  Nick TerrellMove __has_builtin() fallback define to compiler.h
2020-09-24  Nick TerrellMove ASAN/MSAN support declarations to compiler.h
2020-09-24  Nick TerrellRemove MEM_STATIC_ASSERT and use DEBUG_STATIC_ASSERT...
2020-09-24  senhuang42Update unit tests
2020-09-24  senhuang42Add more useful failure message when stdin is an input
2020-09-24  senhuang42Expand UTIL_requireUserConfirmation to include stdin...
next