Searched refs:inbuf (Results 1 – 3 of 3) sorted by relevance
/lib/ |
D | decompress.c | 57 decompress_fn __init decompress_method(const unsigned char *inbuf, long len, in decompress_method() argument 68 pr_debug("Compressed data magic: %#.2x %#.2x\n", inbuf[0], inbuf[1]); in decompress_method() 71 if (!memcmp(inbuf, cf->magic, 2)) in decompress_method()
|
D | decompress_bunzip2.c | 97 unsigned char *inbuf /*,*outbuf*/; member 128 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE); in get_bits() 143 bd->inbufBits = (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; in get_bits() 385 (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; in get_next_block() 628 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len, in start_bunzip() argument 646 bd->inbuf = inbuf; in start_bunzip() 687 unsigned char *inbuf; in bunzip2() local 697 inbuf = buf; in bunzip2() 699 inbuf = malloc(BZIP2_IOBUF_SIZE); in bunzip2() 700 if (!inbuf) { in bunzip2() [all …]
|
D | decompress_unlzma.c | 555 unsigned char *inbuf; in unlzma() local 561 inbuf = buf; in unlzma() 563 inbuf = malloc(LZMA_IOBUF_SIZE); in unlzma() 564 if (!inbuf) { in unlzma() 578 rc_init(&rc, fill, inbuf, in_len); in unlzma() 664 free(inbuf); in unlzma()
|