summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Took out the basics and placed them into basics.c. Added decompression and ↵KyleJHarper2015-10-265-87/+244
| | | | a wrapper for the generic call. I will likely break this file up into 2 examples before submission.
* Final tests and reporting are done. As expected there isn't much to be ↵KyleJHarper2015-10-233-75/+159
| | | | gained by jumping the chain. In most of my tests I did see a moderate performance gain when invoking LZ4_compress_generic() directly with normal text. This could very easily be an edge case. Either way it's interesting and worth sharing.
* Didn't add my file for some reason. Odd.KyleJHarper2015-10-221-0/+155
|
* Wrote the skeleton of the performance test. Need to finish tests for the ↵KyleJHarper2015-10-221-1/+4
| | | | rest of the call stack and then my own copy of generic().
* Merge pull request #131 from Cyan4973/devr131Yann Collet2015-06-298-14/+34
|\ | | | | Dev
| * Fixed a few minor visual analyzer warningsYann Collet2015-06-293-14/+14
| |
| * Increased stack memory considered normal by Visual static analyzerYann Collet2015-06-295-0/+20
| |
* | Merge pull request #130 from Cyan4973/devYann Collet2015-06-2912-35/+82
|\ \ | |/ | | Dev
| * removed one mallocYann Collet2015-06-291-5/+6
| |
| * lz4io : removed one mallocYann Collet2015-06-291-3/+4
| |
| * lz4cli : add one malloc testYann Collet2015-06-291-0/+1
| |
| * lz4hc : added one malloc testYann Collet2015-06-291-0/+1
| |
| * changed datagen to remove one mallocYann Collet2015-06-293-27/+30
| |
| * Added static analyzer test in VisualYann Collet2015-06-296-0/+40
| |
* | Merge pull request #129 from Cyan4973/devYann Collet2015-06-2822-51/+481
|\ \ | |/ | | Dev
| * renamed directory to versionsTestYann Collet2015-06-284-10/+10
| |
| * Updated NEWSYann Collet2015-06-281-0/+1
| |
| * minor example clarificationYann Collet2015-06-284-7/+11
| |
| * Updated lib readmeYann Collet2015-06-271-4/+5
| |
| * Fixed : fuzzer display messagesYann Collet2015-06-271-3/+3
| |
| * staticAnalyze use same compilation flags as normal buildYann Collet2015-06-273-7/+9
| |
| * Ensured make test is not confused with directory testYann Collet2015-06-271-1/+1
| |
| * Added namespace ability to xxhashYann Collet2015-06-273-2/+35
| |
| * Changed : static library is no longer compiled with -fPIC by default (this ↵Yann Collet2015-06-273-3/+10
| | | | | | | | option can still be added on the command line) See #53
| * Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2015-06-276-5/+194
| |\
| | * Merge pull request #124 from toddlipcon/masterYann Collet2015-06-261-3/+8
| | |\ | | | | | | | | Fix cmake build to use gnu flags on clang
| | | * Fix cmake build to use gnu flags on clangTodd Lipcon2015-06-251-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | Previously, the cmake build was only adding -fPIC and -std=c99 on gcc. However, these flags are also appropriate when building with clang.
| | * | Merge pull request #122 from keszybz/masterYann Collet2015-06-263-2/+176
| | |\ \ | | | | | | | | | | New example using frame api as DLL - redirect from #118
| | | * | Use lz4 binary to check outputZbigniew Jędrzejewski-Szmek2015-06-182-0/+3
| | | | |
| | | * | Add example which uses the frame api through the libraryZbigniew Jędrzejewski-Szmek2015-06-183-2/+173
| |_|/ / |/| | |
| | * | Merge pull request #121 from keszybz/add-gitignoreYann Collet2015-06-262-0/+10
| | |\ \ | | | |/ | | |/| Add gitignore - redirect from #117
| | | * Make git ignore generated filesZbigniew Jędrzejewski-Szmek2015-06-162-0/+10
| |_|/ |/| |
* | | Merge pull request #111 from Cyan4973/devr130lz4-r130Yann Collet2015-05-2613-42/+285
|\ \ \ | | | | | | | | Dev
| | * | Minor doc clarification on sparse mode supportYann Collet2015-06-222-2/+2
| | | |
| | * | Minor lib readme updateYann Collet2015-06-181-4/+5
| | | |
| | * | Minor update on source portsYann Collet2015-05-291-2/+3
| | |/
| | * Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2015-05-295-5/+190
| | |\
| | | * Merge pull request #114 from lpsantil/djgppYann Collet2015-05-285-5/+190
| | | |\ | | |/ / | |/| | Djgpp
| | | * READM fixupLouis P. Santillan2015-05-271-1/+1
| | | |
| | | * djgpp port now using the proposed contrib structureLouis P. Santillan2015-05-274-19/+175
| | | |
| | | * Reverted all `Makefile` changesLouis P. Santillan2015-05-273-18/+8
| | | |
| | | * Renamed the djgpp README so that it gets converted to HTML by github. Fixed ↵Louis P. Santillan2015-05-262-9/+9
| | | | | | | | | | | | | | | | breakage of `make install`.
| | | * Makefile cleanups to make building with Andrew Wu's build-djgpp cross ↵Louis P. Santillan2015-05-261-2/+6
| | | | | | | | | | | | | | | | compilers (and everyone else) simpler.
| | | * Fixup lib/Makefile so that is builds a library for djgpp using Andrew Wu's ↵Louis P. Santillan2015-05-261-2/+8
| | | | | | | | | | | | | | | | build-djgpp cross compilers
| | | * Fixup programs/{Makefile,lz4cli.c,lz4io.c} to build with Andrew Wu's ↵Louis P. Santillan2015-05-264-6/+35
| |_|/ |/| | | | | | | | build-djgpp cross compilers. Add some documentation in README.DJ
| | * Updated badgesYann Collet2015-05-291-6/+12
| |/
| * Updated NEWSYann Collet2015-05-251-0/+2
| |
| * Fixed : default sparse mode disabled on stdout, to support ` >>` ↵Yann Collet2015-05-253-10/+20
| | | | | | | | redirection scenario reported by Takayuki Matsuoka (#110)
| * Performance fix : big compression speed boost for clang (+30%)Yann Collet2015-05-213-2/+3
| |
| * Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet2015-05-201-3/+16
| |\