Home
last modified time | relevance | path

Searched refs:huff_code (Results 1 – 4 of 4) sorted by relevance

/isa-l/igzip/
H A Dhuff_codes.h105 struct huff_code { struct
159 struct huff_code dist_lit_table[288];
160 struct huff_code len_table[256];
164 struct huff_code dist_table[31];
165 struct huff_code lit_len_table[513];
H A Dhuff_codes.c928 struct huff_code *codes, uint32_t codes_count, uint32_t max_code_len) in gen_huff_code_lens()
952 set_huff_codes(struct huff_code *huff_code_table, int table_length, uint32_t *count) in set_huff_codes()
983 set_dist_huff_codes(struct huff_code *codes, uint32_t *bl_count) in set_dist_huff_codes()
1021 create_huffman_header(struct BitBuf2 *header_bitbuf, struct huff_code *lookup_table, in create_huffman_header()
1030 struct huff_code huffman_value; in create_huffman_header()
1079 struct huff_code lookup_table[HUFF_LEN]; in create_header()
1088 (struct huff_code *) lookup_table, HUFF_LEN, 7); in create_header()
1223 struct huff_code *hufftable) in create_code_tables()
1241 create_packed_len_table(uint32_t *packed_table, struct huff_code *lit_len_hufftable) in create_packed_len_table()
1280 create_packed_dist_table(uint32_t *packed_table, uint32_t length, struct huff_code *dist_hufftable) in create_packed_dist_table()
[all …]
H A Digzip_inflate.c244 static void inline write_huff_code(struct huff_code *huff_code, uint32_t code, uint32_t length) in write_huff_code() argument
246 huff_code->code_and_length = code | length << 24; in write_huff_code()
249 static int inline set_codes(struct huff_code *huff_code_table, int table_length, uint16_t *count) in set_codes()
254 struct huff_code *table_end = huff_code_table + table_length; in set_codes()
281 static int inline set_and_expand_lit_len_huffcode(struct huff_code *lit_len_huff, in set_and_expand_lit_len_huffcode()
288 struct huff_code *expand_next = &lit_len_huff[ISAL_DEF_LIT_SYMBOLS]; in set_and_expand_lit_len_huffcode()
289 struct huff_code tmp_table[LIT_LEN - ISAL_DEF_LIT_SYMBOLS]; in set_and_expand_lit_len_huffcode()
293 struct huff_code *table_end; in set_and_expand_lit_len_huffcode()
294 struct huff_code *huff_code_table = lit_len_huff; in set_and_expand_lit_len_huffcode()
388 struct huff_code *huff_code_table, uint32_t table_length, in make_inflate_huff_code_lit_len()
[all …]
H A Dencode_df.c22 struct huff_code lsym, dsym; in encode_deflate_icf_base()