4 references to Write
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\UnmanagedMemoryStream.cs (3)
590Volatile.Write(ref _length, (nuint)value); // volatile to prevent reading of uninitialized memory 657Volatile.Write(ref _length, (nuint)n); // volatile to prevent reading of uninitialized memory 784Volatile.Write(ref _length, (nuint)n); // volatile to prevent reading of uninitialized memory
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Thread.cs (1)
653public static void VolatileWrite(ref nuint address, nuint value) => Volatile.Write(ref address, value);