2 writes to _valueBoundaries
Microsoft.ML.Data (2)
DataView\CacheDataView.cs (2)
1373
Utils.EnsureSize(ref
_valueBoundaries
, rowCount + 1);
1414
Array.Resize(ref
_valueBoundaries
, _rowCount + 1);
7 references to _valueBoundaries
Microsoft.ML.Data (7)
DataView\CacheDataView.cs (7)
1375
_valueBoundaries
[rowCount] = _values.Length;
1389
Ctx.Assert((idx + 1) < Utils.Size(
_valueBoundaries
));
1394
Ctx.Assert(
_valueBoundaries
[idx + 1] -
_valueBoundaries
[idx] <= int.MaxValue);
1395
int valueCount = (int)(
_valueBoundaries
[idx + 1] -
_valueBoundaries
[idx]);
1403
_values.CopyTo(
_valueBoundaries
[idx], editor.Values, valueCount);