aboutsummaryrefslogtreecommitdiff
path: root/src/compress/flate
AgeCommit message (Expand)Author
2020-12-09all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTempRuss Cox
2020-10-20all: update references to symbols moved from io/ioutil to ioRuss Cox
2020-10-19compress/flate: fix corrupted outputKlaus Post
2020-10-16compress/flate: revert a goto for-loopDaniel Martí
2020-10-06compress/flate: remove unneeded zeroing of bytes array in (*huffmanBitWriter)...Dan Scales
2020-07-16compress/flate: fix another deflate Reset inconsistencyRuss Cox
2020-07-16compress/flate: fix deflate Reset consistencyKlaus Post
2019-08-28compress/flate: improve deflate performance by register allocating the indexNao YONASHIRO
2019-05-22all: shorten some testsRuss Cox
2019-03-31cmd/go: further reduce init workDaniel Martí
2019-02-19src, misc: apply gofmtRobert Griesemer
2018-12-20compress/flate: fix the old url for the flate algorithmOsamu TONOMORI
2018-10-06all: fix a bunch of misspellingsIgor Zhilianin
2018-10-01Revert "compress: move benchmark text from src/testdata to src/compress/testd...Katie Hockman
2018-09-28compress: move benchmark text from src/testdata to src/compress/testdataKatie Hockman
2018-09-24compress: reduce copies of new text for compression testingKatie Hockman
2018-06-01all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper
2018-05-07compress/flate: do not rename math/bits importRuss Cox
2018-04-17compress/flate: optimize huffSymIlya Tocar
2017-08-31compress/flate: remove non-standard extensions to flateJoe Tsai
2017-03-01compress/flate: use math/bits.Reverse8/16 instead of local implementationRobert Griesemer
2017-01-12compress/flate: avoid large stack growth in fillDeflateJoe Tsai
2016-11-12compress/flate: add examplesJoe Tsai
2016-11-04all: sprinkle t.Parallel on some slow testsBrad Fitzpatrick
2016-10-30compress/flate: tighten the BestSpeed max match offset bound.Nigel Tao
2016-10-27compress/flate: make compression level 0 consistentKlaus Post
2016-10-27compress/flate: level 1 (best speed) match across blocksKlaus Post
2016-10-17compress/flate: use correct table for size estimationKlaus Post
2016-09-04compress/flate: clarify the behavior of Writer.FlushJoe Tsai
2016-08-31compress/flate: always return uncompressed data in the event of errorJoe Tsai
2016-08-20compress/flate: make huffmanBitWriter errors persistentJoe Tsai
2016-07-25compress/flate: document HuffmanOnlyJoe Tsai
2016-06-27compress/flate: don't ignore dict in Reader.ResetVladimir Mihailenco
2016-05-31compress/flate: use seperate const block for exported constantsJoe Tsai
2016-05-25compress/flate: simplify using subtests and sub-benchmarksMarcel van Lohuizen
2016-05-05compress/flate: distinguish between base and min match length.Nigel Tao
2016-04-29compress/flate: use a constant hash table size for Best Speed.Nigel Tao
2016-04-29compress/flate: replace "Best Speed" with specialized versionNigel Tao
2016-04-18compress/flate: use uncompressed if dynamic encoding is largerKlaus Post
2016-04-15all: remove unnecessary type conversionsMatthew Dempsky
2016-04-15compress/flate: fix a fmt.Fprintf style nit in a test.Nigel Tao
2016-04-10compress/flate: improve short writer error testKlaus Post
2016-04-10compress/flate: eliminate most common bounds checksKlaus Post
2016-04-01all: use bytes.Equal, bytes.Contains and strings.ContainsDominik Honnef
2016-03-31compress/flate: make Reader.Read return io.EOF eagerlyJoe Tsai
2016-03-29compress/flate: add pure huffman deflaterKlaus Post
2016-03-25all: delete dead non-test codeDominik Honnef
2016-03-23compress/flate: rework matching algorithmKlaus Post
2016-03-11compress/flate: optimize huffman bit encoderKlaus Post
2016-03-11compress/flate: test if results are deterministicKlaus Post