1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
1600_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantReferenceValue) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
1607return _value == ((ConstantReferenceValueHandle)obj)._value; 1609return _value == ((Handle)obj)._value; 1614public bool Equals(ConstantReferenceValueHandle handle) => _value == handle._value; 1616public bool Equals(Handle handle) => _value == handle._value; 1618public override int GetHashCode() => (int)_value; 1621=> new Handle(handle._value); 1623internal int Offset => (_value & 0x01FFFFFF); 1628public bool IsNil => (_value & 0x01FFFFFF) == 0; 1633if ((HandleType)((uint)_value >> 25) != HandleType.ConstantReferenceValue) 1638public override string ToString() => string.Format("{0:X8}", _value);