1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
316_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantBooleanValue) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
323return _value == ((ConstantBooleanValueHandle)obj)._value; 325return _value == ((Handle)obj)._value; 330public bool Equals(ConstantBooleanValueHandle handle) => _value == handle._value; 332public bool Equals(Handle handle) => _value == handle._value; 334public override int GetHashCode() => (int)_value; 337=> new Handle(handle._value); 339internal int Offset => (_value & 0x01FFFFFF); 344public bool IsNil => (_value & 0x01FFFFFF) == 0; 349if ((HandleType)((uint)_value >> 25) != HandleType.ConstantBooleanValue) 354public override string ToString() => string.Format("{0:X8}", _value);