3 writes to _data
Microsoft.ML.FastTree (3)
Dataset\DenseIntArray.cs (3)
508
_data
= new byte[len];
515
_data
= buffer.ToByteArray(ref position);
522
_data
= values.Select(i => (byte)i).ToArray(len);
7 references to _data
Microsoft.ML.FastTree (7)
Dataset\DenseIntArray.cs (7)
531
return
_data
.SizeInBytes() + sizeof(int) + base.SizeInBytes();
544
_data
.ToByteArray(buffer, ref position);
549
fixed (byte* pData =
_data
)
557
get { return
_data
[index]; }
562
_data
[index] = (byte)value;
570
fixed (byte* pData =
_data
)
581
fixed (byte* pData =
_data
)