2020-12-01 |
senhuang42 | Add sequence nb validation to compressSequences(),... 2405/head |
commit | commitdiff | tree |
2020-11-30 |
senhuang42 | Use cctx's minMatch instead of global MINMATCH, make... |
commit | commitdiff | tree |
2020-11-30 |
Nick Terrell | Merge pull request #2397 from dscheg/fixtrainfrombuffer |
commit | commitdiff | tree |
2020-11-30 |
Yann Collet | Merge pull request #2404 from facebook/lz4check |
commit | commitdiff | tree |
2020-11-30 |
Yann Collet | fix lz4 test messed by console detection 2404/head |
commit | commitdiff | tree |
2020-11-30 |
Yann Collet | Merge pull request #2403 from facebook/no_strncpy |
commit | commitdiff | tree |
2020-11-30 |
Yann Collet | added tests presumed to break lz4 console detection |
commit | commitdiff | tree |
2020-11-30 |
Yann Collet | fix gcc10 warnings 2403/head |
commit | commitdiff | tree |
2020-11-24 |
sen | Merge pull request #2398 from senhuang42/fix_seq_compre... |
commit | commitdiff | tree |
2020-11-23 |
senhuang42 | Force CCtx minmatch to be same as generated minmatch 2398/head |
commit | commitdiff | tree |
2020-11-22 |
Dmitriy Titarenko | Pass dictBufferCapacity to COVER_selectDict() 2397/head |
commit | commitdiff | tree |
2020-11-22 |
sen | Merge pull request #2394 from senhuang42/seq_compress_f... |
commit | commitdiff | tree |
2020-11-20 |
senhuang42 | Fix generating 1 too few characters in random string... 2394/head |
commit | commitdiff | tree |
2020-11-20 |
senhuang42 | Add appropriate bound to matchlengths, and reduce srcSi... |
commit | commitdiff | tree |
2020-11-20 |
senhuang42 | Add a bound for matchlength dependent on window size |
commit | commitdiff | tree |
2020-11-20 |
senhuang42 | Variety of minor fixups, reduce allocation, make determ... |
commit | commitdiff | tree |
2020-11-20 |
senhuang42 | Add built binary to .gitignore |
commit | commitdiff | tree |
2020-11-20 |
senhuang42 | Add new fuzzer to build targets |
commit | commitdiff | tree |
2020-11-20 |
senhuang42 | Implement new fuzzer for sequence compression |
commit | commitdiff | tree |
2020-11-20 |
sen | Merge pull request #2387 from senhuang42/compress_seque... |
commit | commitdiff | tree |
2020-11-20 |
senhuang42 | Add experimental param for sequence validation 2387/head |
commit | commitdiff | tree |
2020-11-20 |
senhuang42 | Remove unnecessary repcode backup, apply style choices... |
commit | commitdiff | tree |
2020-11-19 |
sen | Merge pull request #2395 from senhuang42/is_rle_speedup |
commit | commitdiff | tree |
2020-11-19 |
sen | Explicit cast for visual warnings 2395/head |
commit | commitdiff | tree |
2020-11-19 |
senhuang42 | Unroll isRLE loop |
commit | commitdiff | tree |
2020-11-18 |
senhuang42 | Clean up visual conversion warnings |
commit | commitdiff | tree |
2020-11-18 |
senhuang42 | Improve documentation on ZSTD_compressSequences() |
commit | commitdiff | tree |
2020-11-17 |
senhuang42 | Modification to offset validation to include entire... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Fix assert edge case, improve documentation in zstd.h |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Fix warnings and make validation enabled by default |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Fix unit tests to agree with new changes |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add new sequence format as an experimental CCtx param |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Overhaul logic to simplify, add in proper validations... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add new sequence compress api params to cctx |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Fix srcSize=0 edge case |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Fix literals length calculation |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Adjust unit tests to agree with new sequence generation API |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Remove dstCapacity error check |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Remove extraneous function in this API |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add check comparing offset to window size |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Fix MSAN errors |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Address edge case with endPosInSequence |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Change debug levels to appropriate ones |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add RLE support |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Fix various build warnings |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add test case to roundtrip using ZSTD_getSequences... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add documentation for new api functions |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Refactor for enhanced code clarity |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Rename internal function compressSequences(), and promo... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add another API function to compress with existing... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | More adjustments to improve code clarity |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Pull compressStream2() transparent initialization into... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add initial support for new ZSTD_Sequence mode |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add sequence compression format param |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Always ensure sequenceRange updates properly, add more... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Various minor logical refactors to improve clarity |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Fix cSize calculation for noCompressBlocks |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Rebased, roundtrips silesia.tar |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Refactor for better debugging info |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Corrections and edge-case fixes to be able to roundtrip... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Multi-block compression scaffolding - works on single... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add support for uncompressible blocks |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Enable usage of ZSTD_sequenceRange for single-block... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add logic to handle ZSTD_sequenceRange |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add last literals handling like getSequences() |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Pull block compression out of main compressSequences... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Implement ZSTD_updateSequenceRange |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Modify SequenceRange to have posInSequence |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add function definition for sequenceRange updater |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add ZSTD_SequenceRange to count ranges in array of... |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add support for repcodes |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Code cleanup, add debuglog statments |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Implement first pass at compressSequences() |
commit | commitdiff | tree |
2020-11-16 |
senhuang42 | Add initial function prototype for ZSTD_compressSequenc... |
commit | commitdiff | tree |
2020-11-15 |
sen | Merge pull request #2393 from senhuang42/fix_sequence_e... |
commit | commitdiff | tree |
2020-11-14 |
senhuang42 | Reduce number of memcpy() calls 2393/head |
commit | commitdiff | tree |
2020-11-12 |
senhuang42 | Use existing repcode update function to implement updates |
commit | commitdiff | tree |
2020-11-12 |
senhuang42 | Add in proper block repcode histories |
commit | commitdiff | tree |
2020-11-12 |
senhuang42 | Let block reps persist |
commit | commitdiff | tree |
2020-11-12 |
senhuang42 | Fix incorrect repcode setting |
commit | commitdiff | tree |
2020-11-12 |
senhuang42 | Improve unit test |
commit | commitdiff | tree |
2020-11-12 |
senhuang42 | Overhaul repcode handling logic |
commit | commitdiff | tree |
2020-11-06 |
Yann Collet | Merge pull request #2388 from facebook/fix2386 |
commit | commitdiff | tree |
2020-11-06 |
sen | Merge pull request #2381 from senhuang42/expand_sequenc... |
commit | commitdiff | tree |
2020-11-06 |
Yann Collet | fix multiple minor conversion warnings 2388/head |
commit | commitdiff | tree |
2020-11-06 |
Yann Collet | fix incorrect assert |
commit | commitdiff | tree |
2020-11-06 |
senhuang42 | Update unit tests 2381/head |
commit | commitdiff | tree |
2020-11-06 |
senhuang42 | Implement mergeGeneratedSequences() |
commit | commitdiff | tree |
2020-11-06 |
senhuang42 | Rename getSequences() to generateSequences() |
commit | commitdiff | tree |
2020-11-06 |
senhuang42 | Add new mergeGeneratedSequences() function |
commit | commitdiff | tree |
2020-11-05 |
Nick Terrell | Merge pull request #2385 from LuAPi/add-ZSTD_getDictID_... |
commit | commitdiff | tree |
2020-11-04 |
Luke Pitt | Add ZSTD_getDictID_fromCDict function to experimental... 2385/head |
commit | commitdiff | tree |
2020-11-02 |
senhuang42 | Change block delimiter removing to linear time approach |
commit | commitdiff | tree |
2020-11-02 |
senhuang42 | Remove trailing comma |
commit | commitdiff | tree |
2020-11-02 |
senhuang42 | Use ZSTD_memmove() instead of memmove() |
commit | commitdiff | tree |
2020-11-02 |
senhuang42 | Revert compressibility change |
commit | commitdiff | tree |
2020-11-02 |
senhuang42 | Update name of enum, clarify documentation |
commit | commitdiff | tree |
2020-11-02 |
senhuang42 | Update unit test |
commit | commitdiff | tree |
2020-11-02 |
senhuang42 | Revert unnecessary seqCollector adjustment |
commit | commitdiff | tree |
2020-11-02 |
senhuang42 | Fix incorrect index increment in merge algorithm |
commit | commitdiff | tree |
next |