|
static void | tr_static_init (void) |
|
static void | init_block (deflate_state *s) |
|
static void | pqdownheap (deflate_state *s, ct_data *tree, int k) |
|
static void | gen_bitlen (deflate_state *s, tree_desc *desc) |
|
static void | gen_codes (ct_data *tree, int max_code, ushf *bl_count) |
|
static void | build_tree (deflate_state *s, tree_desc *desc) |
|
static void | scan_tree (deflate_state *s, ct_data *tree, int max_code) |
|
static void | send_tree (deflate_state *s, ct_data *tree, int max_code) |
|
static int | build_bl_tree (deflate_state *s) |
|
static void | send_all_trees (deflate_state *s, int lcodes, int dcodes, int blcodes) |
|
static void | compress_block (deflate_state *s, const ct_data *ltree, const ct_data *dtree) |
|
static int | detect_data_type (deflate_state *s) |
|
static unsigned | bi_reverse (unsigned value, int length) |
|
static void | bi_windup (deflate_state *s) |
|
static void | bi_flush (deflate_state *s) |
|
static void | copy_block (deflate_state *s, charf *buf, unsigned len, int header) |
|
void ZLIB_INTERNAL | _tr_init (deflate_state *s) |
|
void ZLIB_INTERNAL | _tr_stored_block (deflate_state *s, charf *buf, ulg stored_len, int last) |
|
void ZLIB_INTERNAL | _tr_flush_bits (deflate_state *s) |
|
void ZLIB_INTERNAL | _tr_align (deflate_state *s) |
|
void ZLIB_INTERNAL | _tr_flush_block (deflate_state *s, charf *buf, ulg stored_len, int last) |
|
int ZLIB_INTERNAL | _tr_tally (deflate_state *s, unsigned dist, unsigned lc) |
|
|
static const int | extra_lbits [LENGTH_CODES] = {0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0} |
|
static const int | extra_dbits [D_CODES] = {0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13} |
|
static const int | extra_blbits [BL_CODES] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7} |
|
static const uch | bl_order [BL_CODES] = {16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15} |
|
static ct_data | static_ltree [L_CODES+2] |
|
static ct_data | static_dtree [D_CODES] |
|
uch | _dist_code [DIST_CODE_LEN] |
|
uch | _length_code [MAX_MATCH-MIN_MATCH+1] |
|
static int | base_length [LENGTH_CODES] |
|
static int | base_dist [D_CODES] |
|
static static_tree_desc | static_l_desc |
|
static static_tree_desc | static_d_desc |
|
static static_tree_desc | static_bl_desc |
|