3 writes to _buffCur
Microsoft.ML.Core (3)
Utilities\TextReaderStream.cs (3)
126_buffCur = 0; 165_buffCur += toCopy; 175return _eof ? -1 : (int)_buff[_buffCur++];
7 references to _buffCur
Microsoft.ML.Core (7)
Utilities\TextReaderStream.cs (7)
101/// A helper method that will either ensure that <see cref="_buffCur"/> is less 109if (_eof || _buffCur < _buffLim) 111Contracts.Assert(_buffCur == _buffLim); 159Contracts.Assert(_buffCur < _buffLim); 160int toCopy = Math.Min(count - readCount, _buffLim - _buffCur); 162Buffer.BlockCopy(_buff, _buffCur, buffer, offset, toCopy); 174Contracts.Assert(_eof || _buffCur < _buffLim);