Lines Matching refs:codes
437 Literals can be stored uncompressed or compressed using Huffman prefix codes.
678 #### The codes for literals lengths, match lengths, and offsets.
685 ##### Literals length codes
687 Literals length codes are values ranging from `0` to `35` included.
714 ##### Match length codes
716 Match length codes are values ranging from `0` to `52` included.
742 ##### Offset codes
744 Offset codes are values ranging from `0` to `N`.
762 `Offset_Value` from 1 to 3 are special : they define "repeat codes".
815 See the [description of the codes] for how to determine these values.
817 [description of the codes]: #the-codes-for-literals-lengths-match-lengths-and-offsets
917 [Offset Codes]: #offset-codes
1007 (`Literals_Length_Code`, `Match_Length_Code`, offset codes)
1179 [Appendix A]: #appendix-a---decoding-tables-for-predefined-codes
1200 with the codes defined by the method below.
1213 using the fewest bits of any possible prefix codes for that alphabet.
1325 #### Conversion from weights to Huffman prefix codes
1335 Then, starting from lowest `Weight`, prefix codes are distributed in sequential order.
1351 | prefix codes | N/A | 0000| 0001| 001 | 01 | 1 |
1386 Here is an alternative representation with the symbol codes separated by underscore:
1465 Appendix A - Decoding tables for predefined codes
1469 for the predefined literal length, match length, and offset codes.
1687 - 0.2.2 : added predefined codes, by Johannes Rudolph