Searched refs:sc_comp_stream (Results 1 – 2 of 2) sorted by relevance
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()[all …]
133 z_stream sc_comp_stream;/* decompress descriptor */ member