Home
last modified time | relevance | path

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

/lib/
Ddecompress_inflate.c41 unsigned char *out_buf, long out_len, in __gunzip() argument
51 out_buf = malloc(out_len); in __gunzip()
54 out_len = ((size_t)~0) - (size_t)out_buf; /* no limit */ in __gunzip()
56 if (!out_buf) { in __gunzip()
121 strm->next_out = out_buf; in __gunzip()
146 if (flush && strm->next_out > out_buf) { in __gunzip()
147 long l = strm->next_out - out_buf; in __gunzip()
148 if (l != flush(out_buf, l)) { in __gunzip()
153 strm->next_out = out_buf; in __gunzip()
181 free(out_buf); in __gunzip()
[all …]
Ddecompress_unlzo.c108 u8 *in_buf, *in_buf_save, *out_buf; in unlzo() local
112 out_buf = output; in unlzo()
117 out_buf = malloc(LZO_BLOCK_SIZE); in unlzo()
118 if (!out_buf) { in unlzo()
233 memcpy(out_buf, in_buf, src_len); in unlzo()
236 out_buf, &tmp); in unlzo()
244 if (flush && flush(out_buf, dst_len) != dst_len) in unlzo()
247 out_buf += dst_len; in unlzo()
272 free(out_buf); in unlzo()
281 unsigned char *out_buf, long olen, in __decompress() argument
[all …]
Ddecompress_unxz.c401 unsigned char *out_buf, long olen, in __decompress() argument
405 return unxz(buf, len, fill, flush, out_buf, pos, error); in __decompress()