1. 62d7cdc Merge pull request #503 from lz4/l120 by Yann Collet · 7 years ago
  2. dede47f Merge pull request #502 from lhacc1/dev by Yann Collet · 7 years ago
  3. 46058d7 modified indentation for consistency by Yann Collet · 7 years ago
  4. 4785bd6 minor length reduction of several large lines by Yann Collet · 7 years ago
  5. ea6ed46 Wrap likely/unlikely macroses with #ifndef by Dmitrii Rodionov · 7 years ago
  6. 5ad4599 fixed LZ4_compress_fast_extState_fastReset() in 32-bit mode by Yann Collet · 7 years ago
  7. 88cca17 fix dictDelta setting error by Yann Collet · 7 years ago
  8. 1520642 fix matchIndex overflow by Yann Collet · 7 years ago
  9. ce78d10 Merge branch 'dev' into lowAddr by Yann Collet · 7 years ago
  10. aedc447 Always Bump Offset by 64 KB in LZ4_loadDict() by W. Felix Handte · 7 years ago
  11. da3b5ba fixed dictCtx compression by Yann Collet · 7 years ago
  12. 444211d edited a few traces for debugging by Yann Collet · 7 years ago
  13. a3aeb34 fixed minor format warnings by Yann Collet · 7 years ago
  14. e928064 fixed gcc performance regression by Yann Collet · 7 years ago
  15. d2bcfa3 fixed minor unused variable warning by Yann Collet · 7 years ago
  16. c40bac3 added comment on variables required after _next_match by Yann Collet · 7 years ago
  17. 54ec83c fixed potential ptrdiff_t overflow (32-bits mode) by Yann Collet · 7 years ago
  18. 57afa36 compatibility with gcc-4.4 string.h version by Cyan4973 · 7 years ago
  19. db9aa78 fixed : counting matches which overlap extDict and prefix by test4973 · 7 years ago
  20. 8af32ce modified a few traces for debug by test4973 · 7 years ago
  21. 1838803 fixed LZ4_compress_fast_extState_fastReset() by test4973 · 7 years ago
  22. b183066 Merge branch 'dev' into lowAddr by test4973 · 7 years ago
  23. 056ea63 Fix Silly Warning (const-ness in declaration has no effect on value types!) by W. Felix Handte · 7 years ago
  24. 51a56c4 Minor Fixes by W. Felix Handte · 7 years ago
  25. 3a0c571 Add a LZ4_STATIC_LINKING_ONLY Macro to Guard Experimental APIs by W. Felix Handte · 7 years ago
  26. afa52c9 Expose dictCtx Functionality in LZ4 by W. Felix Handte · 7 years ago
  27. 21f0c97 Rename _extState_noReset -> _extState_fastReset and Edit Comments by W. Felix Handte · 7 years ago
  28. c18bff9 Remove Extraneous Assignment (clearedTable == 0) by W. Felix Handte · 7 years ago
  29. 59c7d95 Expose a Faster Stream Reset Function by W. Felix Handte · 7 years ago
  30. cf2f06a fixed minor conversion warning by test4973 · 7 years ago
  31. b28abb9 Merge branch 'dev' into lowAddr by test4973 · 7 years ago
  32. f88dc90 Avoid Calling LZ4_prepareTable() in LZ4_compress_fast_continue() by W. Felix Handte · 7 years ago
  33. 5622c27 Return to Allowing Early Returns in LZ4_compress_generic() by W. Felix Handte · 7 years ago
  34. f9992fa noticed a bug when re-using hash table by test4973 · 7 years ago
  35. f4e06e2 fixed byPtr mode by test4973 · 7 years ago
  36. b4be1e0 fixed byPtr match search by test4973 · 7 years ago
  37. f2a4d6e fixed immediate match search by test4973 · 7 years ago
  38. 64a3e41 changed LZ4_compress_generic() logic by test4973 · 7 years ago
  39. 6d931b6 fixed lz4 compression starting at small address by test4973 · 7 years ago
  40. 43132af Merge branch 'dev' into lowAddr by test4973 · 7 years ago
  41. 8c763aa Merge pull request #487 from felixhandte/better-obsoletion-comment by Yann Collet · 7 years ago
  42. 126f18d Also Fix a Comment by W. Felix Handte · 7 years ago
  43. a3a9b80 Better Describe Functionality of Obsolete Streaming Functions by W. Felix Handte · 7 years ago
  44. 863e248 fix comment style by Yann Collet · 7 years ago
  45. b0a1889 Move LZ4_compress_fast_extState_noReset Declaration to Unstable Section by W. Felix Handte · 7 years ago
  46. 66b6fbf Restore the Other Old Streaming Functions in a Degraded Fashion by W. Felix Handte · 7 years ago
  47. c852f20 Switch ALLOC() to ALLOC_AND_ZERO() to Paper Over Existing Uninitialized Read by W. Felix Handte · 7 years ago
  48. 995756f Split lz4CtxLevel into Two Fields by W. Felix Handte · 7 years ago
  49. 640db34 Another Allocation Fail Check by W. Felix Handte · 7 years ago
  50. 146e676 Restore LZ4_sizeofStreamState, We Didn't Actually Need to Delete It by W. Felix Handte · 7 years ago
  51. 2be38a7 Rename Enums and Add Comment by W. Felix Handte · 7 years ago
  52. b8e9c77 Whitespace Fixes by W. Felix Handte · 7 years ago
  53. 5149767 Add NULL Checks by W. Felix Handte · 7 years ago
  54. 299f349 Simpler Ternary Statements by W. Felix Handte · 7 years ago
  55. f9fef25 Renames and Comment Fixes by W. Felix Handte · 7 years ago
  56. 1df5d91 Hoist LZ4F Dictionary Setup into Helper LZ4F_applyCDict() by W. Felix Handte · 7 years ago
  57. 3ecc1d7 Minor Style Fixes by W. Felix Handte · 7 years ago
  58. e34716c Preserve currentOffset==0 When Possible by W. Felix Handte · 7 years ago
  59. 5f8967b Specialize _extState() for Clean Ctx Rather Than Calling _safeExtState() by W. Felix Handte · 7 years ago
  60. 6716325 Remove Switch In Favor of Ternary Statement by W. Felix Handte · 7 years ago
  61. b4335a6 Further Avoid a dictionary==NULL Check by W. Felix Handte · 7 years ago
  62. 64bcbf4 Optimize Dict Check Condition by W. Felix Handte · 7 years ago
  63. b78cf67 Move to 4KB Cut-Off by W. Felix Handte · 7 years ago
  64. 00eadad Reset Table on Inputs Larger than 2KB by W. Felix Handte · 7 years ago
  65. d571d0c Avoid DictSmall Checks By Strategically Bumping CurrentOffset by W. Felix Handte · 7 years ago
  66. 1c4601d Restore DictIssue Check by W. Felix Handte · 7 years ago
  67. d6ed9a7 Avoid dictionary == NULL Check by W. Felix Handte · 7 years ago
  68. efc419a Replace calloc() Calls With malloc() Where Possible by W. Felix Handte · 7 years ago
  69. 80790c5 Copy the Dict Table Into the Context for Large Compressions by W. Felix Handte · 7 years ago
  70. 9dcd9ab Make LZ4F_compressFrame_usingCDict Take a Compression Context by W. Felix Handte · 7 years ago
  71. 14ce912 Switch Current Offset to 1 Only When in External Dictionary Context Mode by W. Felix Handte · 7 years ago
  72. cea09d6 Hoist Table Reset One Level Up by W. Felix Handte · 7 years ago
  73. 68c6bd1 Set Dictionary Context Pointer Rather than Copying the Context In by W. Felix Handte · 7 years ago
  74. 73cc393 Lookup Matches in Separate Dictionary Context by W. Felix Handte · 7 years ago
  75. 62cb52b Initialize Current Offset to 1 by W. Felix Handte · 7 years ago
  76. 7060bca Only Re-Alloc / Reset When Needed When Switching Between Regular and High Compression Modes by W. Felix Handte · 7 years ago
  77. b3628cb Avoid Resetting the Context When Possible by W. Felix Handte · 7 years ago
  78. aa36e11 Const-ify Table Arg to LZ4_getPosition(OnHash) by W. Felix Handte · 7 years ago
  79. d6a3024 Add LZ4_compress_fast_safeExtState Function by W. Felix Handte · 7 years ago
  80. 5709891 Add a Table Type Field to LZ4_stream_t by W. Felix Handte · 7 years ago
  81. 6933f5a Remove Obsolete Stream Functions to Free Space in LZ4_stream_t by W. Felix Handte · 7 years ago
  82. 6d156fe Allow Empty Dictionaries by W. Felix Handte · 7 years ago
  83. b5233d3 updated LZ4F_compressBound() documentation by Yann Collet · 7 years ago
  84. 860ff77 Merge pull request #478 from lz4/mergeOpt by Yann Collet · 7 years ago
  85. 39fda9a bumped version number to v1.8.2 by Yann Collet · 7 years ago
  86. ba11538 update code comment on LZ4 streaming interface by Yann Collet · 7 years ago
  87. 550b408 merge lz4opt.h into lz4hc.c by Yann Collet · 7 years ago
  88. 7173a63 edge case : compress up to end-mflimit (12 bytes) by Yann Collet · 7 years ago
  89. 71e16fa Merge pull request #471 from lz4/fasterHC by Yann Collet · 7 years ago
  90. 25b16e8 added one assert() by Yann Collet · 7 years ago
  91. d74f079 update API doc regarding double-buffer strategy by Yann Collet · 7 years ago
  92. d3a1339 slight hc speed benefit (~+1%) by Yann Collet · 7 years ago
  93. 219abab removed LZ4_copy8 by Yann Collet · 7 years ago
  94. 2b674bf slightly improved hc compression speed (+~1-2%) by Yann Collet · 7 years ago
  95. 3ad3b0f slightly improved decompression speed (~+1-2%) by Yann Collet · 7 years ago
  96. c4671be intel: do not use __attribute__((packed)) on Windows by Ben Boeckel · 7 years ago
  97. ea25250 fixed code comment as detected in #466 by Yann Collet · 7 years ago
  98. 20e969e fuzzer: added low address compression test by Yann Collet · 7 years ago
  99. e832a3d Clarify the requirements of the LZ4 streaming API by Nick Terrell · 7 years ago
  100. 5fd3ac7 Merge branch 'dev' into frameCompress by Yann Collet · 7 years ago