5 implementations of StoreAligned
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1188
static void ISimdVector<Vector<T>, T>.
StoreAligned
(Vector<T> source, T* destination) => source.StoreAligned(destination);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
840
static void ISimdVector<Vector128<T>, T>.
StoreAligned
(Vector128<T> source, T* destination) => source.StoreAligned(destination);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
828
static void ISimdVector<Vector256<T>, T>.
StoreAligned
(Vector256<T> source, T* destination) => source.StoreAligned(destination);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
828
static void ISimdVector<Vector512<T>, T>.
StoreAligned
(Vector512<T> source, T* destination) => source.StoreAligned(destination);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
897
static void ISimdVector<Vector64<T>, T>.
StoreAligned
(Vector64<T> source, T* destination) => source.StoreAligned(destination);
7 references to StoreAligned
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1186
/// <inheritdoc cref="ISimdVector{TSelf, T}.
StoreAligned
(TSelf, T*)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\ISimdVector_2.cs (1)
741
static virtual void StoreAlignedNonTemporal(TSelf source, T* destination) => TSelf.
StoreAligned
(source, destination);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\SimdVectorExtensions.cs (1)
88
TVector.
StoreAligned
(source, destination);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
838
/// <inheritdoc cref="ISimdVector{TSelf, T}.
StoreAligned
(TSelf, T*)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
826
/// <inheritdoc cref="ISimdVector{TSelf, T}.
StoreAligned
(TSelf, T*)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
826
/// <inheritdoc cref="ISimdVector{TSelf, T}.
StoreAligned
(TSelf, T*)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
895
/// <inheritdoc cref="ISimdVector{TSelf, T}.
StoreAligned
(TSelf, T*)" />