Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | introduced ability to parse for decompression speed | Yann Collet | 2018-04-26 | 1 | -19/+34 |
* | Merge pull request #513 from felixhandte/integrate-static-frame-functions | Yann Collet | 2018-04-24 | 5 | -116/+132 |
|\ | |||||
| * | Multiply-Include Header to Check Guard Macro Correctness | W. Felix Handte | 2018-04-24 | 1 | -0/+3 |
| * | Change Over Includes in the Project | W. Felix Handte | 2018-04-24 | 3 | -3/+5 |
| * | Integrate lz4frame_static.h Declarations into lz4frame.h | W. Felix Handte | 2018-04-24 | 2 | -113/+124 |
|/ | |||||
* | Merge pull request #512 from lz4/HC_dict | Yann Collet | 2018-04-24 | 4 | -53/+315 |
|\ | |||||
| * | Merge pull request #488 from felixhandte/hc-dict-ctx | Yann Collet | 2018-04-24 | 4 | -53/+315 |
| |\ | |||||
| | * | Remove Debug Log Statements | W. Felix Handte | 2018-04-24 | 2 | -30/+5 |
| | * | Remove the Framebench Tool | W. Felix Handte | 2018-04-24 | 2 | -417/+1 |
| | * | Revert Stream Size Const to Correct Value | W. Felix Handte | 2018-04-24 | 1 | -1/+1 |
| | * | Change vLimit Calculation | W. Felix Handte | 2018-04-21 | 1 | -1/+1 |
| | * | Remove Redundant Static Assert | W. Felix Handte | 2018-04-21 | 1 | -1/+0 |
| | * | Simpler loadDict() Reset | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Tolerate Base Pointer Underflow | W. Felix Handte | 2018-04-20 | 1 | -2/+2 |
| | * | Don't Segfault on Malloc Failure | W. Felix Handte | 2018-04-20 | 1 | -3/+5 |
| | * | Sign-Extend -1 to Pointer Width | W. Felix Handte | 2018-04-20 | 1 | -3/+2 |
| | * | Fix Constant Value | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Handle Index Underflows Safely | W. Felix Handte | 2018-04-20 | 1 | -8/+7 |
| | * | Consts and Asserts and Other Minor Nits | W. Felix Handte | 2018-04-20 | 1 | -6/+8 |
| | * | Add Some Simple Fuzzer Tests | W. Felix Handte | 2018-04-20 | 1 | -1/+49 |
| | * | Add Comments on New Public APIs | W. Felix Handte | 2018-04-20 | 1 | -0/+29 |
| | * | Add API for Attaching Dictionaries | W. Felix Handte | 2018-04-20 | 3 | -2/+31 |
| | * | Also Reset the Chain Table | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Remove inputBuffer from Context, Work Around its Absence | W. Felix Handte | 2018-04-20 | 2 | -9/+15 |
| | * | Remove Commented Out Support for Match Continuation over Segment Boundary | W. Felix Handte | 2018-04-20 | 1 | -5/+0 |
| | * | Fix Signedness of Comparison | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Don't Clear the Dictionary Context Until No Longer Useful | W. Felix Handte | 2018-04-20 | 1 | -2/+5 |
| | * | Copy DictCtx into Working Context on Inputs Larger than 4 KB | W. Felix Handte | 2018-04-20 | 1 | -1/+12 |
| | * | Force Inline on HashChain | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Split DictCtx-using Code Into Separate Inlining Chain | W. Felix Handte | 2018-04-20 | 1 | -20/+74 |
| | * | Use Fast Reset in LZ4F Again | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Use Fast Reset API in LZ4F | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Add Fast Reset Paths | W. Felix Handte | 2018-04-20 | 2 | -2/+21 |
| | * | Remove Match Upper Bounds Check | W. Felix Handte | 2018-04-20 | 1 | -7/+6 |
| | * | Fix Some Cast/Conversion Warnings | W. Felix Handte | 2018-04-20 | 1 | -9/+11 |
| | * | Fix Offset Math | W. Felix Handte | 2018-04-20 | 1 | -2/+3 |
| | * | Reset Stream in LZ4_compress_HC | W. Felix Handte | 2018-04-20 | 1 | -1/+4 |
| | * | Don't Bother Clearing Chain Table for Working Contexts | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Push Previous Compression Offsets into the Past | W. Felix Handte | 2018-04-20 | 1 | -11/+21 |
| | * | Shift Dict Limit Checks out of the Loop | W. Felix Handte | 2018-04-20 | 1 | -2/+2 |
| | * | Clear Tables on Dict Load | W. Felix Handte | 2018-04-20 | 1 | -0/+7 |
| | * | Only Perform Dict Lookup if Attempts Remain | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Avoid Resetting Chain Table | W. Felix Handte | 2018-04-20 | 1 | -1/+0 |
| | * | Avoid Resetting Hash Table | W. Felix Handte | 2018-04-20 | 1 | -1/+0 |
| | * | Perform Lookups into the Dictionary Context | W. Felix Handte | 2018-04-20 | 1 | -0/+35 |
| | * | Call LZ4F_applyCDict Even on NULL CDict | W. Felix Handte | 2018-04-20 | 1 | -1/+1 |
| | * | Set dictCtx Rather than memcpy'ing Ctx | W. Felix Handte | 2018-04-20 | 2 | -6/+4 |
| | * | Fully Bounds Check Hash Table Reads | W. Felix Handte | 2018-04-20 | 1 | -2/+2 |
| | * | Add a Dictionary Context Pointer to the HC Context | W. Felix Handte | 2018-04-20 | 1 | -5/+9 |
| | * | Add Debug Log Statements to HC | W. Felix Handte | 2018-04-20 | 2 | -2/+37 |