Home | History | Annotate | Download | only in net

Lines Matching refs:send_bits

2267 #  define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
2273 send_bits(s, tree[c].Code, tree[c].Len); }
2290 local void send_bits(deflate_state *s, int value, int length);
2292 local void send_bits(s, value, length)
2317 #define send_bits(s, value, length) \
2869 send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2);
2872 send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count-3, 3);
2875 send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count-11, 7);
2935 send_bits(s, lcodes-257, 5); /* not +255 as stated in appnote.txt */
2936 send_bits(s, dcodes-1, 5);
2937 send_bits(s, blcodes-4, 4); /* not -3 as stated in appnote.txt */
2940 send_bits(s, s->bl_tree[bl_order[rank]].Len, 3);
2959 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */
2971 send_bits(s, (STORED_BLOCK << 1), 3);
2991 send_bits(s, STATIC_TREES<<1, 3);
3003 send_bits(s, STATIC_TREES<<1, 3);
3082 send_bits(s, (STATIC_TREES<<1)+eof, 3);
3088 send_bits(s, (DYN_TREES<<1)+eof, 3);
3190 send_bits(s, lc, extra); /* send the extra length bits */
3200 send_bits(s, dist, extra); /* send the extra distance bits */