1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
716_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantDoubleArray) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
723return _value == ((ConstantDoubleArrayHandle)obj)._value; 725return _value == ((Handle)obj)._value; 730public bool Equals(ConstantDoubleArrayHandle handle) => _value == handle._value; 732public bool Equals(Handle handle) => _value == handle._value; 734public override int GetHashCode() => (int)_value; 737=> new Handle(handle._value); 739internal int Offset => (_value & 0x01FFFFFF); 744public bool IsNil => (_value & 0x01FFFFFF) == 0; 749if ((HandleType)((uint)_value >> 25) != HandleType.ConstantDoubleArray) 754public override string ToString() => string.Format("{0:X8}", _value);