1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
1204_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantInt16Value) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
1211return _value == ((ConstantInt16ValueHandle)obj)._value; 1213return _value == ((Handle)obj)._value; 1218public bool Equals(ConstantInt16ValueHandle handle) => _value == handle._value; 1220public bool Equals(Handle handle) => _value == handle._value; 1222public override int GetHashCode() => (int)_value; 1225=> new Handle(handle._value); 1227internal int Offset => (_value & 0x01FFFFFF); 1232public bool IsNil => (_value & 0x01FFFFFF) == 0; 1237if ((HandleType)((uint)_value >> 25) != HandleType.ConstantInt16Value) 1242public override string ToString() => string.Format("{0:X8}", _value);