Lines Matching defs:len
36 static long INIT nofill(void *buffer, unsigned long len)
42 static int INIT __gunzip(unsigned char *buf, long len,
69 len = 0;
97 if (len == 0)
98 len = fill(zbuf, GZIP_IOBUF_SIZE);
101 if (len < 10 ||
113 strm->avail_in = len - 10;
147 len = fill(zbuf, GZIP_IOBUF_SIZE);
148 if (len < 0) {
154 strm->avail_in = len;
200 STATIC int INIT gunzip(unsigned char *buf, long len,
207 return __gunzip(buf, len, fill, flush, out_buf, 0, pos, error);
210 STATIC int INIT __decompress(unsigned char *buf, long len,
217 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error);