Lines Matching refs:huff_code

928                    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()
1316 are_hufftables_useable(struct huff_code *lit_len_hufftable, struct huff_code *dist_hufftable) in are_hufftables_useable()
1360 struct huff_code lit_huff_table[LIT_LEN], dist_huff_table[DIST_LEN]; in isal_create_hufftables()
1388 (struct huff_code *) lit_huff_table, LIT_LEN, MAX_DEFLATE_CODE_LEN); in isal_create_hufftables()
1393 (struct huff_code *) dist_huff_table, max_dist, MAX_DEFLATE_CODE_LEN); in isal_create_hufftables()
1399 (struct huff_code *) lit_huff_table, LIT_LEN, in isal_create_hufftables()
1405 (struct huff_code *) dist_huff_table, max_dist, in isal_create_hufftables()
1447 struct huff_code lit_huff_table[LIT_LEN], dist_huff_table[DIST_LEN]; in isal_create_hufftables_subset()
1476 (struct huff_code *) lit_huff_table, LIT_LEN, MAX_DEFLATE_CODE_LEN); in isal_create_hufftables_subset()
1481 (struct huff_code *) dist_huff_table, max_dist, MAX_DEFLATE_CODE_LEN); in isal_create_hufftables_subset()
1487 (struct huff_code *) lit_huff_table, LIT_LEN, in isal_create_hufftables_subset()
1493 (struct huff_code *) dist_huff_table, max_dist, in isal_create_hufftables_subset()
1535 struct huff_code orig[21], *p_code; in expand_hufftables_icf()
1536 struct huff_code *lit_len_codes = hufftables->lit_len_table; in expand_hufftables_icf()
1537 struct huff_code *dist_codes = hufftables->dist_table; in expand_hufftables_icf()
1580 struct huff_code *ll_codes = hufftables->lit_len_table; in create_hufftables_icf()
1581 struct huff_code *d_codes = hufftables->dist_table; in create_hufftables_icf()
1584 struct huff_code *static_ll_codes = static_hufftables.lit_len_table; in create_hufftables_icf()
1585 struct huff_code *static_d_codes = static_hufftables.dist_table; in create_hufftables_icf()