7 references to SegmentSize
Microsoft.Build (7)
src\msbuild\artifacts\.packages\microsoft.codeanalysis.collections\5.0.0-1.25277.114\contentFiles\cs\net9.0\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
;