3 writes to _data
Microsoft.ML.FastTree (3)
Dataset\DenseIntArray.cs (3)
598
_data
= new ushort[len];
605
_data
= values.Select(i => (ushort)i).ToArray(len);
612
_data
= buffer.ToUShortArray(ref position);
6 references to _data
Microsoft.ML.FastTree (6)
Dataset\DenseIntArray.cs (6)
618
fixed (ushort* pData =
_data
)
629
return
_data
.SizeInBytes() + sizeof(int) + base.SizeInBytes();
642
_data
.ToByteArray(buffer, ref position);
649
return
_data
[index];
655
_data
[index] = (ushort)value;
663
fixed (ushort* pData =
_data
)