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
;
41
return (
_data
& bit) == unchecked((uint)bit);
68
return (int)((
_data
& (uint)(section.Mask << section.Offset)) >> section.Offset);
80
_data = unchecked((
_data
& ~(uint)offsetMask) | ((uint)value & (uint)offsetMask));
91
return unchecked((int)
_data
);
156
public bool Equals(BitVector32 other) =>
_data
== other.
_data
;
158
public override int GetHashCode() =>
_data
.GetHashCode();
168
int locdata = unchecked((int)v.
_data
);