6 references to LoadAligned
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
775/// <inheritdoc cref="Vector128.LoadAligned{T}(T*)" /> 779public static unsafe Vector4 LoadAligned(float* source) => Vector128.LoadAligned(source).AsVector4();
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
2263public static unsafe Vector128<T> LoadAlignedNonTemporal<T>(T* source) => LoadAligned(source);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
732static Vector128<T> ISimdVector<Vector128<T>, T>.LoadAligned(T* source) => Vector128.LoadAligned(source);
src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Utility.cs (2)
237if (VectorContainsNonAsciiChar(Vector128.LoadAligned(pBuffer))) 858if (VectorContainsNonAsciiChar(Vector128.LoadAligned((ushort*)pBuffer)))