5 implementations of Load
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1076static Vector<T> ISimdVector<Vector<T>, T>.Load(T* source) => Vector.Load(source);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
728static Vector128<T> ISimdVector<Vector128<T>, T>.Load(T* source) => Vector128.Load(source);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
716static Vector256<T> ISimdVector<Vector256<T>, T>.Load(T* source) => Vector256.Load(source);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
716static Vector512<T> ISimdVector<Vector512<T>, T>.Load(T* source) => Vector512.Load(source);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
785static Vector64<T> ISimdVector<Vector64<T>, T>.Load(T* source) => Vector64.Load(source);
7 references to Load
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1074/// <inheritdoc cref="ISimdVector{TSelf, T}.Load(T*)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
726/// <inheritdoc cref="ISimdVector{TSelf, T}.Load(T*)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
714/// <inheritdoc cref="ISimdVector{TSelf, T}.Load(T*)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
714/// <inheritdoc cref="ISimdVector{TSelf, T}.Load(T*)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
783/// <inheritdoc cref="ISimdVector{TSelf, T}.Load(T*)" />
src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Utility.cs (2)
2199TVectorByte asciiVector = TVectorByte.Load(pAsciiBuffer + currentOffset); 2220asciiVector = TVectorByte.Load(pAsciiBuffer + currentOffset);