2 writes to buckets
System.Core (2)
System\Linq\Enumerable.cs (2)
2393
buckets
= new int[7];
2466
buckets
= newBuckets;
8 references to buckets
System.Core (8)
System\Linq\Enumerable.cs (8)
2411
int bucket = hashCode %
buckets
.Length;
2413
for (int i =
buckets
[bucket] - 1; i >= 0; last = i, i = slots[i].next) {
2416
buckets
[bucket] = slots[i].next + 1;
2433
for (int i =
buckets
[hashCode %
buckets
.Length] - 1; i >= 0; i = slots[i].next) {
2447
int bucket = hashCode %
buckets
.Length;
2450
slots[index].next =
buckets
[bucket] - 1;
2451
buckets
[bucket] = index + 1;