5 references to AllocateArray
ILCompiler.ReadyToRun (1)
TypeSystem\Mutable\MutableModule.cs (1)
214byte[] metadataArray = GC.AllocateArray<byte>(metadataArrayTemp.Length, pinned: true);
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\Tensor.cs (1)
1618T[] values = tensor.IsPinned ? GC.AllocateArray<T>((int)newSize) : (new T[newSize]);
System\Numerics\Tensors\netcore\Tensor_1.cs (1)
30_values = GC.AllocateArray<T>(checked((int)(_shape.LinearLength)), pinned);
System.Windows.Forms (2)
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.cs (2)
518_charBuffer = GC.AllocateArray<char>(newBufferSize, pinned: true); 744_charBuffer = GC.AllocateArray<char>(FileBufferSize, pinned: true);