Searched refs:zbuf (Results 1 – 4 of 4) sorted by relevance
48 u8 *zbuf; in __gunzip() local66 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()[all …]
12 const u8 *zbuf = buf; in zlib_inflate_blob() local27 strm->next_in = zbuf; in zlib_inflate_blob()
45 static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len);
6617 static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len) in bnx2x_gunzip() argument6622 if ((zbuf[0] != 0x1f) || (zbuf[1] != 0x8b) || (zbuf[2] != Z_DEFLATED)) { in bnx2x_gunzip()6631 if (zbuf[3] & FNAME) in bnx2x_gunzip()6632 while ((zbuf[n++] != 0) && (n < len)); in bnx2x_gunzip()6634 bp->strm->next_in = (typeof(bp->strm->next_in))zbuf + n; in bnx2x_gunzip()