zig/lib/std/compress/flate
Igor Anić 3e8cb153ea fix flate regression
Until now literal and distance code lengths where treated as two
different arrays. But according to rfc they can overlap:

  The code length repeat codes can cross from HLIT + 257 to the
  HDIST + 1 code lengths.  In other words, all code lengths form
  a single sequence of HLIT + HDIST + 258 values.

Now code lengths are decoded in single array which is then split
to literal and distance part.
2024-02-17 15:31:13 -08:00
..
testdata fix flate regression 2024-02-17 15:31:13 -08:00
bit_reader.zig fix top level docs comments 2024-02-14 18:28:20 +01:00
bit_writer.zig
block_writer.zig
CircularBuffer.zig fix top level docs comments 2024-02-14 18:28:20 +01:00
consts.zig
container.zig preserve valuable tests from v1 implementation 2024-02-14 22:12:54 +01:00
deflate.zig skip failing wasm tests 2024-02-15 00:35:08 +01:00
huffman_decoder.zig
huffman_encoder.zig
inflate.zig fix flate regression 2024-02-17 15:31:13 -08:00
Lookup.zig
SlidingWindow.zig fix top level docs comments 2024-02-14 18:28:20 +01:00
Token.zig fix top level docs comments 2024-02-14 18:28:20 +01:00