30 references to SegmentedArray
Microsoft.Build.Framework (30)
SegmentedDictionary`2.cs (3)
239
SegmentedArray
.Clear(_buckets, 0, _buckets.Length);
244
SegmentedArray
.Clear(_entries, 0, count);
656
SegmentedArray
.Copy(_entries, entries, count);
SegmentedList`1.cs (27)
139
SegmentedArray
.Copy(_items, newItems, _size);
302
return
SegmentedArray
.BinarySearch<T>(_items, index, count, item, comparer);
328
SegmentedArray
.Clear(_items, 0, size); // Clear the elements so that the gc can reclaim the references.
391
SegmentedArray
.Copy(_items, 0, array!, arrayIndex, _size);
411
SegmentedArray
.Copy(_items, index, array, arrayIndex, count);
417
SegmentedArray
.Copy(_items, 0, array, arrayIndex, _size);
628
SegmentedArray
.Copy(_items, index, list._items, 0, count);
642
=>
SegmentedArray
.IndexOf(_items, item, 0, _size);
666
return
SegmentedArray
.IndexOf(_items, item, index, _size - index);
686
return
SegmentedArray
.IndexOf(_items, item, index, count);
697
return
SegmentedArray
.IndexOf(_items, item, index, count, comparer);
715
SegmentedArray
.Copy(_items, index, _items, index + 1, _size - index);
761
SegmentedArray
.Copy(_items, index, _items, index + count, _size - index);
768
SegmentedArray
.Copy(_items, 0, _items, index, index);
770
SegmentedArray
.Copy(_items, index + count, _items, index * 2, _size - index);
774
SegmentedArray
.Copy(list._items, 0, _items, index, list.Count);
778
SegmentedArray
.Copy(array, 0, _items, index, array.Length);
874
return
SegmentedArray
.LastIndexOf(_items, item, index, count);
905
return
SegmentedArray
.LastIndexOf(_items, item, index, count, comparer);
965
SegmentedArray
.Clear(_items, freeIndex, _size - freeIndex); // Clear the elements so that the gc can reclaim the references.
985
SegmentedArray
.Copy(_items, index + 1, _items, index, _size - index);
1017
SegmentedArray
.Copy(_items, index + count, _items, index, _size - index);
1025
SegmentedArray
.Clear(_items, _size, count);
1056
SegmentedArray
.Reverse(_items, index, count);
1096
SegmentedArray
.Sort<T>(_items, index, count, comparer);
1110
SegmentedArray
.Sort<T>(_items, 0, _size, Comparer<T>.Create(comparison));
1125
SegmentedArray
.Copy(_items, array, _size);