1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
2403_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantUInt32Value) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
2410return _value == ((ConstantUInt32ValueHandle)obj)._value; 2412return _value == ((Handle)obj)._value; 2417public bool Equals(ConstantUInt32ValueHandle handle) => _value == handle._value; 2419public bool Equals(Handle handle) => _value == handle._value; 2421public override int GetHashCode() => (int)_value; 2424=> new Handle(handle._value); 2426internal int Offset => (_value & 0x01FFFFFF); 2431public bool IsNil => (_value & 0x01FFFFFF) == 0; 2436if ((HandleType)((uint)_value >> 25) != HandleType.ConstantUInt32Value) 2441public override string ToString() => string.Format("{0:X8}", _value);