2 writes to _bits
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Synthesized\RefKindVector.cs (2)
25
_bits
= BitVector.Create(capacity * BitsPerRefKind);
30
_bits
= bits;
12 references to _bits
Microsoft.CodeAnalysis.CSharp (12)
Symbols\Synthesized\RefKindVector.cs (12)
33
internal bool IsNull =>
_bits
.IsNull;
35
internal int Capacity =>
_bits
.Capacity / BitsPerRefKind;
37
internal IEnumerable<ulong> Words() =>
_bits
.Words();
44
return (
_bits
[index + 2],
_bits
[index + 1],
_bits
[index]) switch
57
(
_bits
[index + 2],
_bits
[index + 1],
_bits
[index]) = value switch
71
return
_bits
.Equals(other.
_bits
);
81
return
_bits
.GetHashCode();