summaryrefslogtreecommitdiff
path: root/src/pkg/compress
Commit message (Expand)AuthorAgeFilesLines
* compress/flate: use go generate to create fixedhuff.goChaiShushan2014-08-283-16/+43
* bzip2: improve performanceJeff R. Allen2014-08-182-62/+55
* compress/{gzip,zlib}: mention that Close flushesAndrew Gerrand2014-08-122-2/+4
* compress/bzip2: fix panics on malformed input.Adam Langley2014-07-152-2/+37
* compress/lzw: add commentary that TIFF's LZW differs from the standardNigel Tao2014-06-131-2/+6
* compress/gzip: allow Reset on Reader without NewReaderIan Lance Taylor2014-06-032-1/+19
* all: spelling tweaks, A-GRobert Hencke2014-04-294-4/+4
* compress/gzip: add Reset method to ReaderRobert Daniel Kortschak2014-04-162-0/+31
* doc: edit documentation that uses "satisfies reads" and "satisfies writes"Billie Harold Cleek2014-04-165-11/+12
* compress/bzip2: support superfluous Huffman levels.Adam Langley2014-02-141-1/+31
* all: use {bytes,strings}.NewReader instead of bytes.BuffersBrad Fitzpatrick2014-01-277-12/+12
* compress/flate: use io.ByteReader in docsBrad Fitzpatrick2013-12-181-1/+1
* all: add missing copyrightChaiShushan2013-12-171-0/+4
* compress/flate: fix infinite loop on malformed dataRuss Cox2013-10-093-0/+35
* compress/flate: small documentation fixDominik Honnef2013-09-091-1/+1
* compress/flate: prevent panic when reinitializing huffmanDecoder with bad inputEhren Kret2013-09-062-0/+17
* compress/zlib: add Reset method to Writer.R?my Oudompheng2013-09-052-4/+90
* compress/flate: use bytes.NewReader instead of NewBuffer in testBrad Fitzpatrick2013-09-041-2/+3
* compress/gzip: add Writer.ResetBrad Fitzpatrick2013-08-302-17/+64
* compress/flate: implement Reset method on Writer.R?my Oudompheng2013-08-293-2/+154
* compress/bzip2: support concatenated filesRuss Cox2013-08-053-35/+156
* compress/flate: Fixed two panics on bad dataPieter Droogendijk2013-08-012-1/+31
* compress/flate: reduce tiny allocs done by encoder.R?my Oudompheng2013-07-281-47/+45
* compress/bzip2: don't panic on invalid input.Adam Langley2013-06-242-0/+170
* compress/bzip2: faster decoding.R?my Oudompheng2013-06-036-24/+57
* compress/flate: faster version of forwardCopyKeith Randall2013-05-183-11/+28
* compress/gzip: add Writer.Flush to call flate.Writer's FlushBrad Fitzpatrick2013-04-022-1/+63
* build: remove dead codeRuss Cox2013-03-223-3/+0
* all: remove now-unnecessary unreachable panicsBrad Fitzpatrick2013-03-115-7/+0
* all: use t.Skip{,f}Dave Cheney2013-01-241-2/+1
* compress/flate: Performance improvement for inflateRaph Levien2013-01-184-209/+314
* all: use io.ByteWriter now that it existsBrad Fitzpatrick2013-01-081-1/+1
* all: fix typosShenghou Ma2012-12-191-1/+1
* compress/flate: shrink decompressor struct for better performanceRyan Hitchman2012-11-011-2/+6
* gofmt: apply gofmt -w src miscRobert Griesemer2012-10-301-1/+1
* compress/bzip2: use io.ByteReader instead of internal interfaceAnthony Martin2012-10-121-9/+4
* lzw: fix Write returning the wrong number of bytes written.Nigel Tao2012-09-272-5/+14
* compress/flate: move the history buffer out of the decompressor struct.Nigel Tao2012-09-241-2/+4
* compress/flate: fix panic when nlit is out of bounds.Nigel Tao2012-07-162-3/+19
* compress/flate: fix overflow on 2GB input. Reset hashOffset every 16 MB.Ivan Krasin2012-05-302-0/+64
* compress/testdata: change {e,pi}.txt from 10k to 100k digits.Nigel Tao2012-05-096-15/+23
* compress/flate: benchmark some English text, not just the digits of e.Nigel Tao2012-05-092-75/+81
* compress/testdata: remove Byte Order Mark from the Tom Sawyer data.Nigel Tao2012-05-081-1/+1
* compress/flate: add a copy overrun test.Nigel Tao2012-05-011-1/+11
* compress/flate: optimize history-copy decoding.Nigel Tao2012-05-013-31/+88
* compress/flate: add Encoder/Decoder benchmarksDave Cheney2012-04-292-0/+147
* compress/zlib: minor fixesQuan Yong Zhai2012-04-212-1/+38
* all: shorten some of the longer testsRuss Cox2012-02-181-0/+7
* flate: delete WrongValueError type.Nigel Tao2012-02-112-14/+2
* compress: add comments to gzip and zlib.Nigel Tao2012-02-114-6/+20