Lines Matching refs:zbuf
48 u8 *zbuf; in __gunzip() local
66 zbuf = buf; in __gunzip()
68 zbuf = malloc(GZIP_IOBUF_SIZE); in __gunzip()
71 if (!zbuf) { in __gunzip()
98 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
102 zbuf[0] != 0x1f || zbuf[1] != 0x8b || zbuf[2] != 0x08) { in __gunzip()
112 strm->next_in = zbuf + 10; in __gunzip()
115 if (zbuf[3] & 0x8) { in __gunzip()
147 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
153 strm->next_in = zbuf; in __gunzip()
183 *pos = strm->next_in - zbuf+8; in __gunzip()
191 free(zbuf); in __gunzip()