2 writes to _buckets
Microsoft.AspNetCore.SignalR.Core (2)
Internal\Utf8HashLookup.cs (2)
24
_buckets
= new int[7];
145
_buckets
= newBuckets;
5 references to _buckets
Microsoft.AspNetCore.SignalR.Core (5)
Internal\Utf8HashLookup.cs (5)
42
int bucketIndex = hashCode %
_buckets
.Length;
51
_slots[slotIndex].next =
_buckets
[bucketIndex] - 1;
54
_buckets
[bucketIndex] = slotIndex + 1;
99
for (var i =
_buckets
[hashCode %
_buckets
.Length] - 1; i >= 0; i = _slots[i].next)