1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
1444_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantInt64Array) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
1451return _value == ((ConstantInt64ArrayHandle)obj)._value; 1453return _value == ((Handle)obj)._value; 1458public bool Equals(ConstantInt64ArrayHandle handle) => _value == handle._value; 1460public bool Equals(Handle handle) => _value == handle._value; 1462public override int GetHashCode() => (int)_value; 1465=> new Handle(handle._value); 1467internal int Offset => (_value & 0x01FFFFFF); 1472public bool IsNil => (_value & 0x01FFFFFF) == 0; 1477if ((HandleType)((uint)_value >> 25) != HandleType.ConstantInt64Array) 1482public override string ToString() => string.Format("{0:X8}", _value);