Lines Matching refs:len
32 static long INIT nofill(void *buffer, unsigned long len) in nofill() argument
38 STATIC int INIT __gunzip(unsigned char *buf, long len, in __gunzip() argument
65 len = 0; in __gunzip()
88 if (len == 0) in __gunzip()
89 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
92 if (len < 10 || in __gunzip()
104 strm->avail_in = len - 10; in __gunzip()
134 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
135 if (len < 0) { in __gunzip()
141 strm->avail_in = len; in __gunzip()
187 STATIC int INIT gunzip(unsigned char *buf, long len, in gunzip() argument
194 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error); in gunzip()
197 STATIC int INIT __decompress(unsigned char *buf, long len, in __decompress() argument
204 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); in __decompress()