Lines Matching refs:sc_comp_stream
1401 memset(&vnd->sc_comp_stream, 0, sizeof(z_stream));
1402 vnd->sc_comp_stream.zalloc = vnd_alloc;
1403 vnd->sc_comp_stream.zfree = vnd_free;
1404 error = inflateInit2(&vnd->sc_comp_stream, MAX_WBITS);
1406 if (vnd->sc_comp_stream.msg)
1408 unit, vnd->sc_comp_stream.msg);
2045 vnd->sc_comp_stream.next_in = vnd->sc_comp_buff;
2046 vnd->sc_comp_stream.avail_in = length;
2047 vnd->sc_comp_stream.next_out = vnd->sc_comp_decombuf;
2048 vnd->sc_comp_stream.avail_out = vnd->sc_comp_blksz;
2049 inflateReset(&vnd->sc_comp_stream);
2050 error = inflate(&vnd->sc_comp_stream, Z_FINISH);
2052 if (vnd->sc_comp_stream.msg)
2055 vnd->sc_comp_stream.msg);