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