7 references to SegmentSize
Microsoft.CodeAnalysis.Collections.Package (7)
SegmentedArray`1.cs (7)
80
_items = new T[(length +
SegmentSize
- 1) >> SegmentShift][];
83
_items[i] = new T[
SegmentSize
];
157
_items[i].CopyTo(array, index + (i *
SegmentSize
));
166
collection.CopyTo(array, arrayIndex + (i *
SegmentSize
));
245
return index + i *
SegmentSize
;
260
return index + i *
SegmentSize
;
421
public static int SegmentSize => SegmentedArray<T>.
SegmentSize
;