Lines Matching refs:zbuf
43 u8 *zbuf; in __gunzip() local
61 zbuf = buf; in __gunzip()
63 zbuf = malloc(GZIP_IOBUF_SIZE); in __gunzip()
66 if (!zbuf) { in __gunzip()
88 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
92 zbuf[0] != 0x1f || zbuf[1] != 0x8b || zbuf[2] != 0x08) { in __gunzip()
102 strm->next_in = zbuf + 10; in __gunzip()
105 if (zbuf[3] & 0x8) { in __gunzip()
133 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
139 strm->next_in = zbuf; in __gunzip()
169 *pos = strm->next_in - zbuf+8; in __gunzip()
177 free(zbuf); in __gunzip()