1 write to _value
System.Private.CoreLib (1)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
2163_value = (value & 0x01FFFFFF) | (((int)HandleType.ConstantUInt16Array) << 25);
12 references to _value
System.Private.CoreLib (12)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (12)
2170return _value == ((ConstantUInt16ArrayHandle)obj)._value; 2172return _value == ((Handle)obj)._value; 2177public bool Equals(ConstantUInt16ArrayHandle handle) => _value == handle._value; 2179public bool Equals(Handle handle) => _value == handle._value; 2181public override int GetHashCode() => (int)_value; 2184=> new Handle(handle._value); 2186internal int Offset => (_value & 0x01FFFFFF); 2191public bool IsNil => (_value & 0x01FFFFFF) == 0; 2196if ((HandleType)((uint)_value >> 25) != HandleType.ConstantUInt16Array) 2201public override string ToString() => string.Format("{0:X8}", _value);