Searched refs:zbuf (Results 1 – 4 of 4) sorted by relevance
41 u8 *zbuf; in gunzip() local59 zbuf = buf; in gunzip()61 zbuf = malloc(GZIP_IOBUF_SIZE); in gunzip()64 if (!zbuf) { in gunzip()86 len = fill(zbuf, GZIP_IOBUF_SIZE); in gunzip()90 zbuf[0] != 0x1f || zbuf[1] != 0x8b || zbuf[2] != 0x08) { in gunzip()100 strm->next_in = zbuf + 10; in gunzip()103 if (zbuf[3] & 0x8) { in gunzip()131 len = fill(zbuf, GZIP_IOBUF_SIZE); in gunzip()137 strm->next_in = zbuf; in gunzip()[all …]
12 const u8 *zbuf = buf; in zlib_inflate_blob() local27 strm->next_in = zbuf; in zlib_inflate_blob()
18 static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len);
4580 static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len) in bnx2x_gunzip() argument4585 if ((zbuf[0] != 0x1f) || (zbuf[1] != 0x8b) || (zbuf[2] != Z_DEFLATED)) { in bnx2x_gunzip()4594 if (zbuf[3] & FNAME) in bnx2x_gunzip()4595 while ((zbuf[n++] != 0) && (n < len)); in bnx2x_gunzip()4597 bp->strm->next_in = (typeof(bp->strm->next_in))zbuf + n; in bnx2x_gunzip()