1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
1524_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantInt64Value) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
1531return _value == ((ConstantInt64ValueHandle)obj)._value; 1533return _value == ((Handle)obj)._value; 1538public bool Equals(ConstantInt64ValueHandle handle) => _value == handle._value; 1540public bool Equals(Handle handle) => _value == handle._value; 1542public override int GetHashCode() => (int)_value; 1545=> new Handle(handle._value); 1547internal int Offset => (_value & 0x01FFFFFF); 1552public bool IsNil => (_value & 0x01FFFFFF) == 0; 1557if ((HandleType)((uint)_value >> 25) != HandleType.ConstantInt64Value) 1562public override string ToString() => string.Format("{0:X8}", _value);