5 writes to _data
System.Collections.Specialized (5)
System\Collections\Specialized\BitVector32.cs (5)
22_data = unchecked((uint)data); 31_data = value._data; 49_data |= (uint)bit; 53_data &= ~(uint)bit; 80_data = unchecked((_data & ~(uint)offsetMask) | ((uint)value & (uint)offsetMask));
9 references to _data
System.Collections.Specialized (9)
System\Collections\Specialized\BitVector32.cs (9)
31_data = value._data; 41return (_data & bit) == unchecked((uint)bit); 68return (int)((_data & (uint)(section.Mask << section.Offset)) >> section.Offset); 80_data = unchecked((_data & ~(uint)offsetMask) | ((uint)value & (uint)offsetMask)); 91return unchecked((int)_data); 156public bool Equals(BitVector32 other) => _data == other._data; 158public override int GetHashCode() => _data.GetHashCode(); 168int locdata = unchecked((int)v._data);