Lines Matching refs:strm
34 struct z_stream_s stream, *strm = &stream; in __inflate_kernel_data() local
44 strm->workspace = &state; in __inflate_kernel_data()
45 strm->next_in = in; in __inflate_kernel_data()
46 strm->avail_in = _edata_loc - __data_loc; /* upper bound */ in __inflate_kernel_data()
47 strm->next_out = _sdata; in __inflate_kernel_data()
48 strm->avail_out = _edata_loc - __data_loc; in __inflate_kernel_data()
49 zlib_inflateInit2(strm, -MAX_WBITS); in __inflate_kernel_data()
50 WS(strm)->inflate_state.wsize = 0; in __inflate_kernel_data()
51 WS(strm)->inflate_state.window = NULL; in __inflate_kernel_data()
52 rc = zlib_inflate(strm, Z_FINISH); in __inflate_kernel_data()
54 rc = strm->avail_out; /* should be 0 */ in __inflate_kernel_data()