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)
57
public long Length { get { return
_length
; } }
73
Contracts.CheckParam(0 <= index && index <
_length
, nameof(index), "Index out of range.");
80
Contracts.CheckParam(0 <= index && index <
_length
, nameof(index), "Index out of range.");
125
Contracts.CheckParam(0 <= index && index <
_length
, nameof(index), "Index out of range.");
139
Contracts.CheckParam(lim <=
_length
, nameof(lim), "Specified limit index must be no more than length of the array.");
166
Contracts.CheckParam(lim <=
_length
, nameof(lim), "Specified limit index must be no more than length of the array.");
214
if (newLength ==
_length
)
231
if (
_length
== 0)
245
int curLastBlockLength = (int)(((
_length
- 1) & BlockSizeMinusOne) + 1);
248
if (newLength <
_length
)
264
Contracts.Assert(
_length
== curLastBlockLength);
294
if (
_length
== 0)
302
LongLimToMajorMaxMinorLim(
_length
, out maMax, out miLim);
328
LongMinToMajorMinorMin(
_length
, out maMin, out miMin);
329
LongLimToMajorMaxMinorLim(
_length
+ src.Length, out maMax, out miLim);
464
while (cur <
_length
)