1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
4022_value = (value & 0x01FFFFFF) | (((int)HandleType.NamespaceReference) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
4029return _value == ((NamespaceReferenceHandle)obj)._value; 4031return _value == ((Handle)obj)._value; 4036public bool Equals(NamespaceReferenceHandle handle) => _value == handle._value; 4038public bool Equals(Handle handle) => _value == handle._value; 4040public override int GetHashCode() => (int)_value; 4043=> new Handle(handle._value); 4045internal int Offset => (_value & 0x01FFFFFF); 4050public bool IsNil => (_value & 0x01FFFFFF) == 0; 4055if ((HandleType)((uint)_value >> 25) != HandleType.NamespaceReference) 4060public override string ToString() => string.Format("{0:X8}", _value);