2 writes to _data
Microsoft.ML.FastTree (2)
Dataset\DenseIntArray.cs (2)
332_data = new uint[((((long)len) * _bits) >> 5) + 2]; 338_data = buffer.ToUIntArray(ref position);
10 references to _data
Microsoft.ML.FastTree (10)
Dataset\DenseIntArray.cs (10)
364return (int)((uint)((_data[major] | (((ulong)_data[major + 1]) << 32)) >> minor) & mask); 381_data[major] = (_data[major] & ~major0Mask) | (uint)val; 382_data[major + 1] = (_data[major + 1] & ~major1Mask) | (uint)(val >> 32); 390return _data.SizeInBytes() + sizeof(int) + base.SizeInBytes(); 403_data.ToByteArray(buffer, ref position); 414fixed (uint* pData = _data) 451fixed (uint* pData = _data)