2 writes to _buckets
Microsoft.CodeAnalysis (2)
src\Dependencies\Collections\SegmentedDictionary`2.cs (2)
499
_buckets
= buckets;
655
_buckets
= new SegmentedArray<int>(newSize);
9 references to _buckets
Microsoft.CodeAnalysis (9)
src\Dependencies\Collections\SegmentedDictionary`2.cs (9)
299
Debug.Assert(
_buckets
.Length > 0, "_buckets should be non-empty");
302
SegmentedArray.Clear(
_buckets
);
404
if (
_buckets
.Length > 0)
512
if (
_buckets
.Length == 0)
516
Debug.Assert(
_buckets
.Length > 0);
703
if (
_buckets
.Length > 0)
780
if (
_buckets
.Length > 0)
963
if (
_buckets
.Length == 0)
1153
var buckets =
_buckets
;