6 references to LoadUnsafe
System.Linq (5)
System\Linq\Sum.cs (5)
128Vector<T> data = Vector.LoadUnsafe(ref ptr, index); 132data = Vector.LoadUnsafe(ref ptr, index + (nuint)Vector<T>.Count); 136data = Vector.LoadUnsafe(ref ptr, index + (nuint)Vector<T>.Count * 2); 140data = Vector.LoadUnsafe(ref ptr, index + (nuint)Vector<T>.Count * 3); 160Vector<T> data = Vector.LoadUnsafe(ref ptr, index);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1092static Vector<T> ISimdVector<Vector<T>, T>.LoadUnsafe(ref readonly T source, nuint elementOffset) => Vector.LoadUnsafe(in source, elementOffset);