send_bits         167 tools/packfi2/trees.c #  define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
send_bits         173 tools/packfi2/trees.c        send_bits(s, tree[c].Code, tree[c].Len); }
send_bits         190 tools/packfi2/trees.c local void send_bits      OF((deflate_state *s, int value, int length));
send_bits         780 tools/packfi2/trees.c             send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2);
send_bits         783 tools/packfi2/trees.c             send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count-3, 3);
send_bits         786 tools/packfi2/trees.c             send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count-11, 7);
send_bits         848 tools/packfi2/trees.c     send_bits(s, lcodes-257, 5); /* not +255 as stated in appnote.txt */
send_bits         849 tools/packfi2/trees.c     send_bits(s, dcodes-1,   5);
send_bits         850 tools/packfi2/trees.c     send_bits(s, blcodes-4,  4); /* not -3 as stated in appnote.txt */
send_bits         853 tools/packfi2/trees.c         send_bits(s, s->bl_tree[bl_order[rank]].Len, 3);
send_bits         873 tools/packfi2/trees.c     send_bits(s, (STORED_BLOCK<<1)+eof, 3);  /* send block type */
send_bits         895 tools/packfi2/trees.c     send_bits(s, STATIC_TREES<<1, 3);
send_bits         907 tools/packfi2/trees.c         send_bits(s, STATIC_TREES<<1, 3);
send_bits         988 tools/packfi2/trees.c         send_bits(s, (STATIC_TREES<<1)+eof, 3);
send_bits         994 tools/packfi2/trees.c         send_bits(s, (DYN_TREES<<1)+eof, 3);
send_bits        1096 tools/packfi2/trees.c                 send_bits(s, lc, extra);       /* send the extra length bits */
send_bits        1106 tools/packfi2/trees.c                 send_bits(s, dist, extra);   /* send the extra distance bits */