Home
last modified time | relevance | path

Searched refs:zbuf (Results 1 – 4 of 4) sorted by relevance

/linux-2.6.39/lib/
Ddecompress_inflate.c41 u8 *zbuf; in gunzip() local
59 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 …]
/linux-2.6.39/lib/zlib_inflate/
Dinfutil.c12 const u8 *zbuf = buf; in zlib_inflate_blob() local
27 strm->next_in = zbuf; in zlib_inflate_blob()
/linux-2.6.39/drivers/net/bnx2x/
Dbnx2x_init_ops.h18 static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len);
Dbnx2x_main.c4580 static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len) in bnx2x_gunzip() argument
4585 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()