1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
1364_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantInt32Value) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
1371return _value == ((ConstantInt32ValueHandle)obj)._value; 1373return _value == ((Handle)obj)._value; 1378public bool Equals(ConstantInt32ValueHandle handle) => _value == handle._value; 1380public bool Equals(Handle handle) => _value == handle._value; 1382public override int GetHashCode() => (int)_value; 1385=> new Handle(handle._value); 1387internal int Offset => (_value & 0x01FFFFFF); 1392public bool IsNil => (_value & 0x01FFFFFF) == 0; 1397if ((HandleType)((uint)_value >> 25) != HandleType.ConstantInt32Value) 1402public override string ToString() => string.Format("{0:X8}", _value);