Searched defs:_ztream (Results 1 - 1 of 1) sorted by relevance

/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCodecBase.cs25 internal ZStream _ztream = new ZStream(); field in class:DotZLib.CodecBase
77 if (_ztream.total_out > 0)
80 DataAvailable( _outBuffer, 0, (int)_ztream.total_out);
171 _ztream.next_in = _hInput.AddrOfPinnedObject();
172 _ztream.total_in = 0;
173 _ztream.avail_in = (uint)count;
182 _ztream.total_out = 0;
183 _ztream.avail_out = kBufferSize;
184 _ztream.next_out = _hOutput.AddrOfPinnedObject();

Completed in 157 milliseconds