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