local              58 tools/packfi2/crc32.c    local unsigned long crc32_little OF((unsigned long,
local              60 tools/packfi2/crc32.c    local unsigned long crc32_big OF((unsigned long,
local              68 tools/packfi2/crc32.c local unsigned long gf2_matrix_times OF((unsigned long *mat,
local              70 tools/packfi2/crc32.c local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
local              74 tools/packfi2/crc32.c local volatile int crc_table_empty = 1;
local              75 tools/packfi2/crc32.c local unsigned long FAR crc_table[TBLS][256];
local              76 tools/packfi2/crc32.c local void make_crc_table OF((void));
local              78 tools/packfi2/crc32.c    local void write_table OF((FILE *, const unsigned long FAR *));
local             106 tools/packfi2/crc32.c local void make_crc_table()
local             183 tools/packfi2/crc32.c local void write_table(out, table)
local             262 tools/packfi2/crc32.c local unsigned long crc32_little(crc, buf, len)
local             302 tools/packfi2/crc32.c local unsigned long crc32_big(crc, buf, len)
local             342 tools/packfi2/crc32.c local unsigned long gf2_matrix_times(mat, vec)
local             359 tools/packfi2/crc32.c local void gf2_matrix_square(square, mat)
local               5 tools/packfi2/crc32.h local const unsigned long FAR crc_table[TBLS][256] =
local              76 tools/packfi2/deflate.c local void fill_window    OF((deflate_state *s));
local              77 tools/packfi2/deflate.c local block_state deflate_stored OF((deflate_state *s, int flush));
local              78 tools/packfi2/deflate.c local block_state deflate_fast   OF((deflate_state *s, int flush));
local              80 tools/packfi2/deflate.c local block_state deflate_slow   OF((deflate_state *s, int flush));
local              82 tools/packfi2/deflate.c local void lm_init        OF((deflate_state *s));
local              83 tools/packfi2/deflate.c local void putShortMSB    OF((deflate_state *s, uInt b));
local              84 tools/packfi2/deflate.c local void flush_pending  OF((z_streamp strm));
local              85 tools/packfi2/deflate.c local int read_buf        OF((z_streamp strm, Bytef *buf, unsigned size));
local              91 tools/packfi2/deflate.c local uInt longest_match  OF((deflate_state *s, IPos cur_match));
local              94 tools/packfi2/deflate.c local uInt longest_match_fast OF((deflate_state *s, IPos cur_match));
local              97 tools/packfi2/deflate.c local  void check_match OF((deflate_state *s, IPos start, IPos match,
local             132 tools/packfi2/deflate.c local const config configuration_table[2] = {
local             137 tools/packfi2/deflate.c local const config configuration_table[10] = {
local             518 tools/packfi2/deflate.c local void putShortMSB (s, b)
local             532 tools/packfi2/deflate.c local void flush_pending(strm)
local             956 tools/packfi2/deflate.c local int read_buf(strm, buf, size)
local             986 tools/packfi2/deflate.c local void lm_init (s)
local            1027 tools/packfi2/deflate.c local uInt longest_match(s, cur_match)
local            1175 tools/packfi2/deflate.c local uInt longest_match_fast(s, cur_match)
local            1232 tools/packfi2/deflate.c local void check_match(s, start, match, length)
local            1266 tools/packfi2/deflate.c local void fill_window(s)
local            1390 tools/packfi2/deflate.c local block_state deflate_stored(s, flush)
local            1448 tools/packfi2/deflate.c local block_state deflate_fast(s, flush)
local            1554 tools/packfi2/deflate.c local block_state deflate_slow(s, flush)
local            1683 tools/packfi2/deflate.c local block_state deflate_rle(s, flush)
local              61 tools/packfi2/trees.c local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
local              64 tools/packfi2/trees.c local const int extra_dbits[D_CODES] /* extra bits for each distance code */
local              67 tools/packfi2/trees.c local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
local              70 tools/packfi2/trees.c local const uch bl_order[BL_CODES]
local              90 tools/packfi2/trees.c local ct_data static_ltree[L_CODES+2];
local              97 tools/packfi2/trees.c local ct_data static_dtree[D_CODES];
local             111 tools/packfi2/trees.c local int base_length[LENGTH_CODES];
local             114 tools/packfi2/trees.c local int base_dist[D_CODES];
local             129 tools/packfi2/trees.c local static_tree_desc  static_l_desc =
local             132 tools/packfi2/trees.c local static_tree_desc  static_d_desc =
local             135 tools/packfi2/trees.c local static_tree_desc  static_bl_desc =
local             142 tools/packfi2/trees.c local void tr_static_init OF((void));
local             143 tools/packfi2/trees.c local void init_block     OF((deflate_state *s));
local             144 tools/packfi2/trees.c local void pqdownheap     OF((deflate_state *s, ct_data *tree, int k));
local             145 tools/packfi2/trees.c local void gen_bitlen     OF((deflate_state *s, tree_desc *desc));
local             146 tools/packfi2/trees.c local void gen_codes      OF((ct_data *tree, int max_code, ushf *bl_count));
local             147 tools/packfi2/trees.c local void build_tree     OF((deflate_state *s, tree_desc *desc));
local             148 tools/packfi2/trees.c local void scan_tree      OF((deflate_state *s, ct_data *tree, int max_code));
local             149 tools/packfi2/trees.c local void send_tree      OF((deflate_state *s, ct_data *tree, int max_code));
local             150 tools/packfi2/trees.c local int  build_bl_tree  OF((deflate_state *s));
local             151 tools/packfi2/trees.c local void send_all_trees OF((deflate_state *s, int lcodes, int dcodes,
local             153 tools/packfi2/trees.c local void compress_block OF((deflate_state *s, ct_data *ltree,
local             155 tools/packfi2/trees.c local void set_data_type  OF((deflate_state *s));
local             156 tools/packfi2/trees.c local unsigned bi_reverse OF((unsigned value, int length));
local             157 tools/packfi2/trees.c local void bi_windup      OF((deflate_state *s));
local             158 tools/packfi2/trees.c local void bi_flush       OF((deflate_state *s));
local             159 tools/packfi2/trees.c local void copy_block     OF((deflate_state *s, charf *buf, unsigned len,
local             163 tools/packfi2/trees.c local void gen_trees_header OF((void));
local             190 tools/packfi2/trees.c local void send_bits      OF((deflate_state *s, int value, int length));
local             192 tools/packfi2/trees.c local void send_bits(s, value, length)
local             238 tools/packfi2/trees.c local void tr_static_init()
local             411 tools/packfi2/trees.c local void init_block(s)
local             455 tools/packfi2/trees.c local void pqdownheap(s, tree, k)
local             490 tools/packfi2/trees.c local void gen_bitlen(s, desc)
local             577 tools/packfi2/trees.c local void gen_codes (tree, max_code, bl_count)
local             619 tools/packfi2/trees.c local void build_tree(s, desc)
local             707 tools/packfi2/trees.c local void scan_tree (s, tree, max_code)
local             752 tools/packfi2/trees.c local void send_tree (s, tree, max_code)
local             803 tools/packfi2/trees.c local int build_bl_tree(s)
local             838 tools/packfi2/trees.c local void send_all_trees(s, lcodes, dcodes, blcodes)
local            1072 tools/packfi2/trees.c local void compress_block(s, ltree, dtree)
local            1126 tools/packfi2/trees.c local void set_data_type(s)
local            1146 tools/packfi2/trees.c local unsigned bi_reverse(code, len)
local            1161 tools/packfi2/trees.c local void bi_flush(s)
local            1178 tools/packfi2/trees.c local void bi_windup(s)
local            1197 tools/packfi2/trees.c local void copy_block(s, buf, len, header)
local               3 tools/packfi2/trees.h local const ct_data static_ltree[L_CODES+2] = {
local              64 tools/packfi2/trees.h local const ct_data static_dtree[D_CODES] = {
local             118 tools/packfi2/trees.h local const int base_length[LENGTH_CODES] = {
local             123 tools/packfi2/trees.h local const int base_dist[D_CODES] = {
local             201 tools/packfi2/zutil.c local int next_ptr = 0;
local             208 tools/packfi2/zutil.c local ptr_table table[MAX_PTR];
local              42 tools/packfi2/zutil.h #ifndef local