1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
5366_value = (value & 0x01FFFFFF) | (((int)HandleType.TypeSpecification) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
5373return _value == ((TypeSpecificationHandle)obj)._value; 5375return _value == ((Handle)obj)._value; 5380public bool Equals(TypeSpecificationHandle handle) => _value == handle._value; 5382public bool Equals(Handle handle) => _value == handle._value; 5384public override int GetHashCode() => (int)_value; 5387=> new Handle(handle._value); 5389internal int Offset => (_value & 0x01FFFFFF); 5394public bool IsNil => (_value & 0x01FFFFFF) == 0; 5399if ((HandleType)((uint)_value >> 25) != HandleType.TypeSpecification) 5404public override string ToString() => string.Format("{0:X8}", _value);