2 writes to _data
Microsoft.ML.FastTree (2)
Dataset\DenseIntArray.cs (2)
215_data = new uint[((((long)len) * _bits) >> 5) + 2]; 221_data = buffer.ToUIntArray(ref position);
10 references to _data
Microsoft.ML.FastTree (10)
Dataset\DenseIntArray.cs (10)
247return (int)((uint)((_data[major] | (((ulong)_data[major + 1]) << 32)) >> minor) & mask); 264_data[major] = (_data[major] & ~major0Mask) | (uint)val; 265_data[major + 1] = (_data[major + 1] & ~major1Mask) | (uint)(val >> 32); 273return _data.SizeInBytes() + sizeof(int) + base.SizeInBytes(); 286_data.ToByteArray(buffer, ref position); 297fixed (uint* pData = _data) 334fixed (uint* pData = _data)