1 write to _hashCode
Microsoft.CodeAnalysis.Threading.Package (1)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (1)
1109
entry.
_hashCode
= hashCode;
7 references to _hashCode
Microsoft.CodeAnalysis.Threading.Package (7)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (7)
242
if (entry.
_hashCode
== hashCode && EqualityComparer<T>.Default.Equals(entry._value, item))
264
if (entry.
_hashCode
== hashCode && comparer!.Equals(entry._value, item))
315
if (entry.
_hashCode
== hashCode && (comparer?.Equals(entry._value, item) ?? EqualityComparer<T>.Default.Equals(entry._value, item)))
917
ref var bucket = ref GetBucketRef(entry.
_hashCode
);
971
var hashCode = oldEntries[i].
_hashCode
; // At this point, we know we have entries.
1046
if (entry.
_hashCode
== hashCode && EqualityComparer<T>.Default.Equals(entry._value, value))
1070
if (entry.
_hashCode
== hashCode && comparer!.Equals(entry._value, value))