4 writes to _value
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (4)
46_value = value; 53_value = (nuint)value; 62_value = (nuint)value; 76_value = (nuint)value;
17 references to _value
System.Private.CoreLib (17)
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (17)
83ulong value = _value; 92ulong value = _value; 103return checked((uint)_value); 110public ulong ToUInt64() => _value; 162public unsafe void* ToPointer() => (void*)_value; 194if (_value < value) return -1; 195if (_value > value) return 1; 200public bool Equals(nuint other) => _value == other; 202public override string ToString() => ((nuint_t)_value).ToString(); 203public string ToString([StringSyntax(StringSyntaxAttribute.NumericFormat)] string? format) => ((nuint_t)_value).ToString(format); 204public string ToString(IFormatProvider? provider) => ((nuint_t)_value).ToString(provider); 205public string ToString([StringSyntax(StringSyntaxAttribute.NumericFormat)] string? format, IFormatProvider? provider) => ((nuint_t)_value).ToString(format, provider); 208((nuint_t)_value).TryFormat(destination, out charsWritten, format, provider); 212((nuint_t)_value).TryFormat(utf8Destination, out bytesWritten, format, provider); 433int IBinaryInteger<nuint>.GetShortestBitLength() => (sizeof(nuint_t) * 8) - BitOperations.LeadingZeroCount(_value); 441if (BinaryPrimitives.TryWriteUIntPtrBigEndian(destination, _value)) 454if (BinaryPrimitives.TryWriteUIntPtrLittleEndian(destination, _value))