2 writes to buckets
System.Data.Linq (2)
IdentityManager.cs (2)
258
buckets
= new int[7];
352
buckets
= newBuckets;
8 references to buckets
System.Data.Linq (8)
IdentityManager.cs (8)
275
int bucket = hashCode %
buckets
.Length;
277
for (int i =
buckets
[bucket] - 1; i >= 0; last = i, i = slots[i].next) {
280
buckets
[bucket] = slots[i].next + 1;
315
for (int i =
buckets
[hashCode %
buckets
.Length] - 1; i >= 0; i = slots[i].next) {
332
int bucket = hashCode %
buckets
.Length;
336
slots[index].next =
buckets
[bucket] - 1;
337
buckets
[bucket] = index + 1;