Lines Matching refs:out_buf
40 unsigned char *out_buf, long out_len, in __gunzip() argument
50 out_buf = malloc(out_len); in __gunzip()
53 out_len = ((size_t)~0) - (size_t)out_buf; /* no limit */ in __gunzip()
55 if (!out_buf) { in __gunzip()
120 strm->next_out = out_buf; in __gunzip()
145 if (flush && strm->next_out > out_buf) { in __gunzip()
146 long l = strm->next_out - out_buf; in __gunzip()
147 if (l != flush(out_buf, l)) { in __gunzip()
152 strm->next_out = out_buf; in __gunzip()
180 free(out_buf); in __gunzip()
189 unsigned char *out_buf, in gunzip() argument
193 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip()
199 unsigned char *out_buf, long out_len, in __decompress() argument
203 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); in __decompress()