3 writes to _data
Microsoft.ML.FastTree (3)
Dataset\DenseIntArray.cs (3)
687
_data
= new int[len];
694
_data
= values.ToArray(len);
701
_data
= buffer.ToIntArray(ref position);
6 references to _data
Microsoft.ML.FastTree (6)
Dataset\DenseIntArray.cs (6)
707
fixed (int* pData =
_data
)
718
return
_data
.SizeInBytes() + sizeof(int) + base.SizeInBytes();
731
_data
.ToByteArray(buffer, ref position);
738
return
_data
[index];
744
_data
[index] = value;
752
fixed (int* pData =
_data
)