Searched refs:bitbuf_put (Results 1 – 1 of 1) sorted by relevance
/external/toybox/toys/pending/ |
D | compress.c | 215 void bitbuf_put(struct bitbuf *bb, int data, int len) in bitbuf_put() function 433 bitbuf_put(bb, final, 1); in deflate() 434 bitbuf_put(bb, 0, 1); in deflate() 436 bitbuf_put(bb, 0, (8-bb->bitpos)&7); in deflate() 437 bitbuf_put(bb, len, 16); in deflate() 438 bitbuf_put(bb, 0xffff & ~len, 16); in deflate() 444 bitbuf_put(bb, data[pos], 8); in deflate() 544 bitbuf_put(bb, 0, (8-bb->bitpos)&7); in do_gzip() 545 bitbuf_put(bb, ~TT.crc, 32); in do_gzip() 546 bitbuf_put(bb, TT.len, 32); in do_gzip()
|