Home
last modified time | relevance | path

Searched refs:inbuf (Results 1 – 3 of 3) sorted by relevance

/lib/
Ddecompress.c58 decompress_fn __init decompress_method(const unsigned char *inbuf, long len, in decompress_method() argument
69 pr_debug("Compressed data magic: %#.2x %#.2x\n", inbuf[0], inbuf[1]); in decompress_method()
72 if (!memcmp(inbuf, cf->magic, 2)) in decompress_method()
Ddecompress_bunzip2.c98 unsigned char *inbuf /*,*outbuf*/; member
129 bd->inbufCount = bd->fill(bd->inbuf, BZIP2_IOBUF_SIZE); in get_bits()
144 bd->inbufBits = (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; in get_bits()
386 (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; in get_next_block()
629 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, long len, in start_bunzip() argument
647 bd->inbuf = inbuf; in start_bunzip()
688 unsigned char *inbuf; in bunzip2() local
698 inbuf = buf; in bunzip2()
700 inbuf = malloc(BZIP2_IOBUF_SIZE); in bunzip2()
701 if (!inbuf) { in bunzip2()
[all …]
Ddecompress_unlzma.c555 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()