5 implementations of Alignment
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
821static int ISimdVector<Vector<T>, T>.Alignment => Vector.Alignment;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
472static int ISimdVector<Vector128<T>, T>.Alignment => Vector128.Alignment;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
461static int ISimdVector<Vector256<T>, T>.Alignment => Vector256.Alignment;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
461static int ISimdVector<Vector512<T>, T>.Alignment => Vector512.Alignment;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
529static int ISimdVector<Vector64<T>, T>.Alignment => Vector64.Alignment;
8 references to Alignment
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
820/// <inheritdoc cref="ISimdVector{TSelf, T}.Alignment" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\ISimdVector_2.cs (2)
533if (((nuint)(source) % (uint)(TSelf.Alignment)) != 0) 729if (((nuint)(destination) % (uint)(TSelf.Alignment)) != 0)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
471/// <inheritdoc cref="ISimdVector{TSelf, T}.Alignment" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
460/// <inheritdoc cref="ISimdVector{TSelf, T}.Alignment" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
460/// <inheritdoc cref="ISimdVector{TSelf, T}.Alignment" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
528/// <inheritdoc cref="ISimdVector{TSelf, T}.Alignment" />
src\libraries\System.Private.CoreLib\src\System\Text\Ascii.Utility.cs (1)
2209pCurrentWriteAddress = (ushort*)((nuint)pCurrentWriteAddress & ~(nuint)(TVectorUInt16.Alignment - 1));