summaryrefslogtreecommitdiff
path: root/Libraries/LibCompress
AgeCommit message (Expand)Author
2020-12-31Everywhere: Re-format with clang-format-11Linus Groh
2020-12-30AK: Make binary_search signature more generic.asynts
2020-10-02Everywhere: Fix typosNico Weber
2020-09-15AK: Remove OutputMemoryStream for DuplexMemoryStream.asynts
2020-09-14AK: Lower the requirements for InputStream::eof and rename it.asynts
2020-09-11LibCompress: Move CanonicalCode out of DeflateDecompressor.asynts
2020-09-11LibCompress: Remove unnecessary InputBitStream.asynts
2020-09-11LibCompress: Return Optional from decompress_all method.asynts
2020-09-11LibCompress: Use OutputMemoryStream in decompress_all methods.asynts
2020-09-08Refactor: Replace usages of FixedArray with Array.asynts
2020-09-06LibCompress: Simplify logic in deflate implementation.asynts
2020-09-06Streams: Consistent behaviour when reading from stream with error.asynts
2020-09-06LibCompress: Add another unit test.asynts
2020-09-06Deflate: Fix deadly typo.asynts
2020-09-06LibCompress: Replace ASSERT_NOT_REACHED with set_fatal_error.asynts
2020-09-01AK: Move memory streams into their own header.asynts
2020-09-01Streams: Distinguish recoverable and fatal errors.asynts
2020-08-31LibCompress: Fix a bug when wrapping around the buffer.asynts
2020-08-31LibCompress: Add support for dynamic deflate blocks.asynts
2020-08-31LibCompress: Deflate: Don't assert that the codes are valid.asynts
2020-08-31LibCompess: Add missing state update in DeflateDecompressor::read.asynts
2020-08-31LibCompress: CanonicalCode: Don't leave unused code uninitialized.asynts
2020-08-30LibCompress: Implement gzip.asynts
2020-08-26LibCompress: Implement DEFLATE properly.asynts
2020-08-20LibCompress: Turn the DEFLATE implementation into a stream.asynts
2020-08-17LibCompress: Fix uninitialized member variable in Zlib, found by CoverityBrian Gianforcaro
2020-08-12LibCompress: Mark compilation-unit-only functions as staticBen Wiederhake
2020-08-04LibCompress: Add LibCompressstelar7