Lines Matching refs:out_buf
41 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()
190 unsigned char *out_buf, in gunzip() argument
194 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip()
200 unsigned char *out_buf, long out_len, in __decompress() argument
204 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); in __decompress()