summaryrefslogtreecommitdiff
path: root/ext/compressors/lz4/lz4_compress.c
Commit message (Expand)AuthorAgeFilesLines
* WT-3313 Replace calls to the deprecated LZ4_compress function (#3423)David Hows2017-05-171-5/+4
* WT-3269 Miscellaneous cleanup (#3377)Keith Bostic2017-04-071-2/+2
* WT-3267 Upgrade copyright notices from 2016 to 2017. (#3374)Keith Bostic2017-04-071-1/+1
* WT-2880 Add Zstandard compression support (#3075)Keith Bostic2016-10-211-10/+31
* WT-2376: Modules should compile without including wt_internal.h header fileKeith Bostic2016-02-211-10/+31
* WT-2372 - wt_internal.h should always be the first include, when neededDavid Hows2016-02-021-2/+2
* WT-60: big endian supportKeith Bostic2016-01-281-1/+3
* WT-60: big endian supportKeith Bostic2016-01-281-11/+20
* Upgrade copyright notices from 2015 to 2016.Keith Bostic2016-01-011-1/+1
* Add fix for C2054 to lz4_compressDavid Hows2015-05-291-0/+3
* Alex's review, src_len is used.Keith Bostic2015-05-041-1/+0
* Alex's review, beef up the decompress comment explaining the bounceKeith Bostic2015-05-041-4/+8
* Document that prefix.unused can be used as a mode flag in the future.Keith Bostic2015-05-041-1/+4
* It seems possible the destination length is smaller than the targetKeith Bostic2015-05-041-2/+2
* Alex's review, switch to more intuitive field names in the prefixKeith Bostic2015-05-041-10/+10
* Allocate a scratch buffer as necessary during decompression, solves theKeith Bostic2015-05-031-14/+41
* Fix a typo, was never returning success from raw compression.Keith Bostic2015-05-031-0/+1
* Rewrite the binary search function (I took zlib's, but zlib's searchKeith Bostic2015-05-031-8/+13
* Add LZ4 raw support based on the new LZ4_compress_destSize API, makingKeith Bostic2015-05-031-84/+173
* add missing () on return call.Keith Bostic2015-05-021-1/+1
* Remove "wt_" prefix from local functions, they're not addingKeith Bostic2015-05-021-17/+18
* Switch to using "safe mode" LZ4 decompression. We rely on it to detect error...Michael Cahill2015-03-251-6/+8
* Fix a bug in lz4 decompression.Alex Gorrod2015-03-191-1/+1
* Fix a bug in lz4 compression - we were never compressing buffers.Alex Gorrod2015-03-191-1/+1
* Use LZ4_decompress_fast instead of LZ4_decompress_safe, we don't needKeith Bostic2015-03-181-2/+2
* Don't write out the error value twice in a row.Keith Bostic2015-03-181-4/+4
* Fix build warning re: type conversion.Alex Gorrod2015-03-181-2/+2
* More fixes to lz4 source file.Alex Gorrod2015-03-181-11/+14
* Fix issues with unknown WT_UNUSEDdaveh862015-03-181-2/+2
* Update LZ4 source code to be more in-line with Snappy implementation.Alex Gorrod2015-03-181-78/+83
* Fixup lint in new lz4 source code.Alex Gorrod2015-03-181-68/+64
* LZ4 external compressorQuentin Conner2015-03-121-0/+245