Lines Matching refs:send_bits
156 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
162 send_bits(s, tree[c].Code, tree[c].Len); }
177 static void send_bits (deflate_state *s, int value, int length);
179 static void send_bits( in send_bits() function
205 #define send_bits(s, value, length) \ macro
701 send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2); in send_tree()
704 send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count-3, 3); in send_tree()
707 send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count-11, 7); in send_tree()
773 send_bits(s, lcodes-257, 5); /* not +255 as stated in appnote.txt */ in send_all_trees()
774 send_bits(s, dcodes-1, 5); in send_all_trees()
775 send_bits(s, blcodes-4, 4); /* not -3 as stated in appnote.txt */ in send_all_trees()
778 send_bits(s, s->bl_tree[bl_order[rank]].Len, 3); in send_all_trees()
799 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */ in zlib_tr_stored_block()
812 send_bits(s, (STORED_BLOCK << 1), 3); in zlib_tr_stored_type_only()
833 send_bits(s, STATIC_TREES<<1, 3); in zlib_tr_align()
843 send_bits(s, STATIC_TREES<<1, 3); in zlib_tr_align()
942 send_bits(s, (STATIC_TREES<<1)+eof, 3);
946 send_bits(s, (DYN_TREES<<1)+eof, 3);
1043 send_bits(s, lc, extra); /* send the extra length bits */
1053 send_bits(s, dist, extra); /* send the extra distance bits */