1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
3477_value = (value & 0x01FFFFFF) | (((int)HandleType.MethodSemantics) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
3484return _value == ((MethodSemanticsHandle)obj)._value; 3486return _value == ((Handle)obj)._value; 3491public bool Equals(MethodSemanticsHandle handle) => _value == handle._value; 3493public bool Equals(Handle handle) => _value == handle._value; 3495public override int GetHashCode() => (int)_value; 3498=> new Handle(handle._value); 3500internal int Offset => (_value & 0x01FFFFFF); 3505public bool IsNil => (_value & 0x01FFFFFF) == 0; 3510if ((HandleType)((uint)_value >> 25) != HandleType.MethodSemantics) 3515public override string ToString() => string.Format("{0:X8}", _value);