Home | History | Annotate | Download | only in zlib

Lines Matching refs:send_bits

168 #  define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
174 send_bits(s, tree[c].Code, tree[c].Len); }
191 local void send_bits OF((deflate_state *s, int value, int length));
193 local void send_bits(s, value, length)
218 #define send_bits(s, value, length) \
784 send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2);
787 send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count-3, 3);
790 send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count-11, 7);
852 send_bits(s, lcodes-257, 5); /* not +255 as stated in appnote.txt */
853 send_bits(s, dcodes-1, 5);
854 send_bits(s, blcodes-4, 4); /* not -3 as stated in appnote.txt */
857 send_bits(s, s->bl_tree[bl_order[rank]].Len, 3);
877 send_bits(s, (STORED_BLOCK<<1)+last, 3); /* send block type */
899 send_bits(s, STATIC_TREES<<1, 3);
911 send_bits(s, STATIC_TREES<<1, 3);
992 send_bits(s, (STATIC_TREES<<1)+last, 3);
998 send_bits(s, (DYN_TREES<<1)+last, 3);
1100 send_bits(s, lc, extra); /* send the extra length bits */
1110 send_bits(s, dist, extra); /* send the extra distance bits */