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