5 writes to _length
Microsoft.ML.Core (5)
Utilities\BigArray.cs (5)
109_length = size; 221_length = newLength; 238_length = newLength; 286_length = newLength; 375_length += src.Length;
16 references to _length
Microsoft.ML.Core (16)
Utilities\BigArray.cs (16)
57public long Length { get { return _length; } } 73Contracts.CheckParam(0 <= index && index < _length, nameof(index), "Index out of range."); 80Contracts.CheckParam(0 <= index && index < _length, nameof(index), "Index out of range."); 125Contracts.CheckParam(0 <= index && index < _length, nameof(index), "Index out of range."); 139Contracts.CheckParam(lim <= _length, nameof(lim), "Specified limit index must be no more than length of the array."); 166Contracts.CheckParam(lim <= _length, nameof(lim), "Specified limit index must be no more than length of the array."); 214if (newLength == _length) 231if (_length == 0) 245int curLastBlockLength = (int)(((_length - 1) & BlockSizeMinusOne) + 1); 248if (newLength < _length) 264Contracts.Assert(_length == curLastBlockLength); 294if (_length == 0) 302LongLimToMajorMaxMinorLim(_length, out maMax, out miLim); 328LongMinToMajorMinorMin(_length, out maMin, out miMin); 329LongLimToMajorMaxMinorLim(_length + src.Length, out maMax, out miLim); 464while (cur < _length)