1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
4888_value = (value & 0x01FFFFFF) | (((int)HandleType.ScopeReference) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
4895return _value == ((ScopeReferenceHandle)obj)._value; 4897return _value == ((Handle)obj)._value; 4902public bool Equals(ScopeReferenceHandle handle) => _value == handle._value; 4904public bool Equals(Handle handle) => _value == handle._value; 4906public override int GetHashCode() => (int)_value; 4909=> new Handle(handle._value); 4911internal int Offset => (_value & 0x01FFFFFF); 4916public bool IsNil => (_value & 0x01FFFFFF) == 0; 4921if ((HandleType)((uint)_value >> 25) != HandleType.ScopeReference) 4926public override string ToString() => string.Format("{0:X8}", _value);