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

/linux-master/lib/
H A Ddecompress_inflate.c48 u8 *zbuf; local
66 zbuf = buf;
68 zbuf = malloc(GZIP_IOBUF_SIZE);
71 if (!zbuf) {
98 len = fill(zbuf, GZIP_IOBUF_SIZE);
102 zbuf[0] != 0x1f || zbuf[1] != 0x8b || zbuf[2] != 0x08) {
112 strm->next_in = zbuf + 10;
115 if (zbuf[
[all...]
/linux-master/lib/zlib_inflate/
H A Dinfutil.c12 const u8 *zbuf = buf; local
27 strm->next_in = zbuf;
/linux-master/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_init_ops.h45 static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len);
H A Dbnx2x_main.c6616 static int bnx2x_gunzip(struct bnx2x *bp, const u8 *zbuf, int len) argument
6621 if ((zbuf[0] != 0x1f) || (zbuf[1] != 0x8b) || (zbuf[2] != Z_DEFLATED)) {
6630 if (zbuf[3] & FNAME)
6631 while ((zbuf[n++] != 0) && (n < len));
6633 bp->strm->next_in = (typeof(bp->strm->next_in))zbuf + n;

Completed in 148 milliseconds