Home
last modified time | relevance | path

Searched refs:send_bits (Results 1 – 2 of 2) sorted by relevance

/openbmc/u-boot/lib/zlib/
H A Dtrees.c168 # 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) in send_bits() function
218 #define send_bits(s, value, length) \ macro
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);
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/rsync/files/
H A D0001-Add-missing-prototypes-to-function-declarations.patch98 @@ -231,7 +231,7 @@ local void send_bits(s, value, length)