1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
476_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantByteValue) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
483return _value == ((ConstantByteValueHandle)obj)._value; 485return _value == ((Handle)obj)._value; 490public bool Equals(ConstantByteValueHandle handle) => _value == handle._value; 492public bool Equals(Handle handle) => _value == handle._value; 494public override int GetHashCode() => (int)_value; 497=> new Handle(handle._value); 499internal int Offset => (_value & 0x01FFFFFF); 504public bool IsNil => (_value & 0x01FFFFFF) == 0; 509if ((HandleType)((uint)_value >> 25) != HandleType.ConstantByteValue) 514public override string ToString() => string.Format("{0:X8}", _value);