1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
396_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantByteArray) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
403return _value == ((ConstantByteArrayHandle)obj)._value; 405return _value == ((Handle)obj)._value; 410public bool Equals(ConstantByteArrayHandle handle) => _value == handle._value; 412public bool Equals(Handle handle) => _value == handle._value; 414public override int GetHashCode() => (int)_value; 417=> new Handle(handle._value); 419internal int Offset => (_value & 0x01FFFFFF); 424public bool IsNil => (_value & 0x01FFFFFF) == 0; 429if ((HandleType)((uint)_value >> 25) != HandleType.ConstantByteArray) 434public override string ToString() => string.Format("{0:X8}", _value);