Lines Matching refs:zbuf
44 u8 *zbuf; in __gunzip() local
62 zbuf = buf; in __gunzip()
64 zbuf = malloc(GZIP_IOBUF_SIZE); in __gunzip()
67 if (!zbuf) { in __gunzip()
89 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
93 zbuf[0] != 0x1f || zbuf[1] != 0x8b || zbuf[2] != 0x08) { in __gunzip()
103 strm->next_in = zbuf + 10; in __gunzip()
106 if (zbuf[3] & 0x8) { in __gunzip()
134 len = fill(zbuf, GZIP_IOBUF_SIZE); in __gunzip()
140 strm->next_in = zbuf; in __gunzip()
170 *pos = strm->next_in - zbuf+8; in __gunzip()
178 free(zbuf); in __gunzip()