3 writes to _buffCur
Microsoft.ML.Core (3)
Utilities\TextReaderStream.cs (3)
126
_buffCur
= 0;
165
_buffCur
+= toCopy;
175
return _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
109
if (_eof ||
_buffCur
< _buffLim)
111
Contracts.Assert(
_buffCur
== _buffLim);
159
Contracts.Assert(
_buffCur
< _buffLim);
160
int toCopy = Math.Min(count - readCount, _buffLim -
_buffCur
);
162
Buffer.BlockCopy(_buff,
_buffCur
, buffer, offset, toCopy);
174
Contracts.Assert(_eof ||
_buffCur
< _buffLim);