compress.c | 215 void bitbuf_put(struct bitbuf *bb, int data, int len) function 435 bitbuf_put(bb, final, 1); 436 bitbuf_put(bb, 0, 1); 438 bitbuf_put(bb, 0, (8-bb->bitpos)&7); 439 bitbuf_put(bb, len, 16); 440 bitbuf_put(bb, 0xffff & ~len, 16); 446 bitbuf_put(bb, data[pos], 8); 546 bitbuf_put(bb, 0, (8-bb->bitpos)&7); 547 bitbuf_put(bb, ~TT.crc, 32); 548 bitbuf_put(bb, TT.len, 32) [all...] |