2 references to LoadUnsafe
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
1866public static unsafe Vector<T> Load<T>(T* source) => LoadUnsafe(ref *source);
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1088static Vector<T> ISimdVector<Vector<T>, T>.LoadUnsafe(ref readonly T source) => Vector.LoadUnsafe(in source);