commit | acad56f51e5d54d3c48bbf6b5ac3918be75f6836 | [log] [tgz] |
---|---|---|
author | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Jan 14 07:25:46 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Jan 14 07:25:46 2020 +0000 |
tree | 515ab32dfde6dabd0e67095b28d851c9a13f9a17 | |
parent | b85fb787ae48667c5fb8e7bcc19ccbc8adbed54c [diff] | |
parent | 01db2cd1e54c0ae476a9643d7a7eb90bd0a65ef6 [diff] |
Fix an overlow on undersized zip buffer am: 4effb50064 am: 98a12d9b89 am: 01db2cd1e5 Change-Id: Ib94a2b3181f85533a0cc779fcb41f7a7222cead2
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_
.