1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
1124_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantInt16Array) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
1131return _value == ((ConstantInt16ArrayHandle)obj)._value; 1133return _value == ((Handle)obj)._value; 1138public bool Equals(ConstantInt16ArrayHandle handle) => _value == handle._value; 1140public bool Equals(Handle handle) => _value == handle._value; 1142public override int GetHashCode() => (int)_value; 1145=> new Handle(handle._value); 1147internal int Offset => (_value & 0x01FFFFFF); 1152public bool IsNil => (_value & 0x01FFFFFF) == 0; 1157if ((HandleType)((uint)_value >> 25) != HandleType.ConstantInt16Array) 1162public override string ToString() => string.Format("{0:X8}", _value);