7 writes to _length
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\IO\UnmanagedMemoryStream.cs (7)
123_length = (nuint)length; 169_length = (nuint)length; 369long len = (long)Volatile.Read(ref _length); 491long len = (long)Volatile.Read(ref _length); 589Volatile.Write(ref _length, (nuint)value); // volatile to prevent reading of uninitialized memory 656Volatile.Write(ref _length, (nuint)n); // volatile to prevent reading of uninitialized memory 783Volatile.Write(ref _length, (nuint)n); // volatile to prevent reading of uninitialized memory
5 references to _length
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\IO\UnmanagedMemoryStream.cs (5)
257return (long)_length; 552newPosition = (long)_length + offset; 581long len = (long)_length; 631long len = (long)_length; 759long len = (long)_length;