Lines Matching defs:strm
1301 struct z_stream_s strm;
1310 memset(&strm, 0, sizeof(strm));
1312 strm.workspace = kvzalloc(zlib_inflate_workspacesize(), GFP_KERNEL);
1313 if (!strm.workspace)
1316 strm.next_in = src;
1317 strm.avail_in = slen;
1319 error = zlib_inflateInit(&strm);
1325 strm.next_out = dst;
1326 strm.avail_out = dlen;
1328 error = zlib_inflate(&strm, Z_FINISH);
1334 zlib_inflateEnd(&strm);
1336 kvfree(strm.workspace);