4 references to StoreAligned
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\X86\Sse2.cs (1)
1725public static unsafe void StoreAligned(byte* address, Vector128<byte> source) => StoreAligned(address, source);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Latin1Utility.cs (3)
900Sse2.StoreAligned(pLatin1Buffer + currentOffsetInElements, latin1Vector); // aligned 1018Sse2.StoreAligned((byte*)pCurrentWriteAddress, low); 1021Sse2.StoreAligned((byte*)pCurrentWriteAddress + SizeOfVector128, high);