commit | 51a9d1985ef3757e10e16ebed098b714bf52f9f3 | [log] [tgz] |
---|---|---|
author | Amin Hassani <ahassani@google.com> | Wed Mar 21 17:39:40 2018 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Wed Mar 21 17:39:40 2018 +0000 |
tree | dd0c4cce1798fbd1cdbc100816afc7b315ba3ca6 | |
parent | 76a561352e5dfa185b1c2f0646280532c46cbbd4 [diff] | |
parent | 5f76db65b6ecb99f3509e06d508ad5aa1e515831 [diff] |
convert TEST_AND_RETURN_VALUE to TEST_AND_RETURN_FALSE am: 06ca45b4f6 am: 5f76db65b6 Change-Id: Ibc295ac2803115cf83b5ac5bcdfca5318c20dac7
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_
.