Lines Matching refs:strm
40 struct z_stream_s stream, *strm = &stream; in __inflate_kernel_data() local
50 strm->workspace = &state; in __inflate_kernel_data()
51 strm->next_in = in; in __inflate_kernel_data()
52 strm->avail_in = _edata_loc - __data_loc; /* upper bound */ in __inflate_kernel_data()
53 strm->next_out = _sdata; in __inflate_kernel_data()
54 strm->avail_out = _edata_loc - __data_loc; in __inflate_kernel_data()
55 zlib_inflateInit2(strm, -MAX_WBITS); in __inflate_kernel_data()
56 WS(strm)->inflate_state.wsize = 0; in __inflate_kernel_data()
57 WS(strm)->inflate_state.window = NULL; in __inflate_kernel_data()
58 rc = zlib_inflate(strm, Z_FINISH); in __inflate_kernel_data()
60 rc = strm->avail_out; /* should be 0 */ in __inflate_kernel_data()