7 references to SegmentSize
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (7)
src\Dependencies\Collections\Segmented\SegmentedArray`1.cs (7)
82
_items = new T[(length +
SegmentSize
- 1) >> SegmentShift][];
85
_items[i] = new T[
SegmentSize
];
159
_items[i].CopyTo(array, index + (i *
SegmentSize
));
168
collection.CopyTo(array, arrayIndex + (i *
SegmentSize
));
247
return index + i *
SegmentSize
;
262
return index + i *
SegmentSize
;
423
public static int SegmentSize => SegmentedArray<T>.
SegmentSize
;