commit | ba2b2a9c0c6874f90d1a72accc7b14f9e5b5adf7 | [log] [tgz] |
---|---|---|
author | Amin Hassani <ahassani@google.com> | Wed Oct 09 16:00:58 2019 -0700 |
committer | Amin Hassani <ahassani@google.com> | Wed Oct 09 16:03:55 2019 -0700 |
tree | 8d7545bc9bae9fc17f8e752b353624c72868d1a6 | |
parent | bc7745523aef2d7f620ca16aa6ab11a8e38dc60e [diff] |
Break puffin_fuzzer into three fuzzers puffin_fuzzer is actually testing three imporant function with only one data. This might reduce the number of paths that can be tested by the fuzzers. Break it into three so more surface is touched by the fuzzers. Bug: crbug.com/1012871 Test: FEATURES=test USE="asan fuzzer" emerge-amd64-generic puffin Change-Id: I3a0e3e297deb96c4a5adf201336d878765696cc9
Source code for Puffin: A utility for deterministic DEFLATE recompression.
TODO(ahassani): Describe the directory structure and how-tos.
Alphabet A value that occurs in the input stream. It can be either a literal:[0..255], and end of block sign [256], a length[257..285], or a distance [0..29].
Huffman code A variable length code representing the Huffman encoded of an alphabet. Huffman codes can be created uniquely using Huffman code length array.
Huffman code array An array which an array index identifies a Huffman code and the array element in that index represents the corresponding alphabet. Throughout the code, Huffman code arrays are identified by vectors with postfix hcodes_
.
Huffman reverse code array An array which an array index identifies an alphabet and the array element in that index contains the Huffman code of the alphabet. Throughout the code, The Huffman reverse code arrays are identified by vectors with postfix rcodes_
.
Huffman code length The number of bits in a Huffman code.
Huffman code length array An array of Huffman code lengths with the array index as the alphabet. Throughout the code, Huffman code length arrays are identified by vectors with postfix lens_
.