2 writes to _buckets
Microsoft.CodeAnalysis.InteractiveHost (2)
src\Dependencies\Collections\Segmented\SegmentedDictionary`2.cs (2)
501
_buckets
= buckets;
657
_buckets
= new SegmentedArray<int>(newSize);
9 references to _buckets
Microsoft.CodeAnalysis.InteractiveHost (9)
src\Dependencies\Collections\Segmented\SegmentedDictionary`2.cs (9)
301
Debug.Assert(
_buckets
.Length > 0, "_buckets should be non-empty");
304
SegmentedArray.Clear(
_buckets
);
406
if (
_buckets
.Length > 0)
514
if (
_buckets
.Length == 0)
518
Debug.Assert(
_buckets
.Length > 0);
705
if (
_buckets
.Length > 0)
782
if (
_buckets
.Length > 0)
965
if (
_buckets
.Length == 0)
1155
var buckets =
_buckets
;