Searched refs:_stream (Results 1 – 6 of 6) sorted by relevance
47 _stream = &__stream; in _reset()48 memset(_stream, 0, sizeof(struct z_stream_s)); in _reset()74 if (inflateInit2(_stream, -15) != Z_OK) in open()76 _stream->next_in = _inbuf; in open()107 _stream->next_out = reinterpret_cast<uint8_t *>(buf); in _read()108 _stream->avail_out = len; in _read()111 while (_stream->avail_out != 0) { in _read()114 uint32_t n = _stream->avail_in; in _read()115 if (n > _stream->avail_out) in _read()116 n = _stream->avail_out; in _read()[all …]
75 struct z_stream_s *_stream; variable
1053 struct outlc ## _stream out = outuc ## _STREAM(stdout_type); \1054 struct errlc ## _stream err = erruc ## _STREAM(stderr_type); \
2 .. _stream:
5884 const(ubyte)[] _stream;5890 _stream = stream; in this()5902 if (_idx == _stream.length) in popFront()5908 _front[0] = base + decompressFrom(_stream, _idx); in popFront()5909 if (_idx == _stream.length)// odd length ---> till the end in popFront()5914 _front[1] = base + decompressFrom(_stream, _idx); in popFront()
5887 const(ubyte)[] _stream;5893 _stream = stream;5905 if (_idx == _stream.length)5911 _front[0] = base + decompressFrom(_stream, _idx);5912 if (_idx == _stream.length)// odd length ---> till the end5917 _front[1] = base + decompressFrom(_stream, _idx);