1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
1284_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantInt32Array) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
1291return _value == ((ConstantInt32ArrayHandle)obj)._value; 1293return _value == ((Handle)obj)._value; 1298public bool Equals(ConstantInt32ArrayHandle handle) => _value == handle._value; 1300public bool Equals(Handle handle) => _value == handle._value; 1302public override int GetHashCode() => (int)_value; 1305=> new Handle(handle._value); 1307internal int Offset => (_value & 0x01FFFFFF); 1312public bool IsNil => (_value & 0x01FFFFFF) == 0; 1317if ((HandleType)((uint)_value >> 25) != HandleType.ConstantInt32Array) 1322public override string ToString() => string.Format("{0:X8}", _value);