5 writes to _c
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Guid.cs (5)
78_c = BinaryPrimitives.ReverseEndianness(_c); 95_c = BinaryPrimitives.ReverseEndianness(_c); 111_c = (short)c; 134_c = c; 151_c = c;
33 references to _c
System.Private.CoreLib (33)
src\libraries\System.Private.CoreLib\src\System\Guid.cs (31)
78_c = BinaryPrimitives.ReverseEndianness(_c); 95_c = BinaryPrimitives.ReverseEndianness(_c); 289public int Version => (ushort)_c >>> 12; 327Unsafe.AsRef(in result._c) = (short)((result._c & ~VersionMask) | Version7Value); 1134if (value._c != _c) 1136return GetResult((uint)_c, (uint)value._c); 1424p += HexsToChars(p, _c >> 8, _c); 1481dest[21] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 12)); 1482dest[22] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 8)); 1483dest[23] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 4)); 1484dest[24] = TChar.CastFrom(HexConverter.ToCharLower(_c)); 1601if (left._c != right._c) 1603return (uint)left._c < (uint)right._c; 1662if (left._c != right._c) 1664return (uint)left._c < (uint)right._c; 1723if (left._c != right._c) 1725return (uint)left._c > (uint)right._c; 1784if (left._c != right._c) 1786return (uint)left._c > (uint)right._c;
src\libraries\System.Private.CoreLib\src\System\Guid.Unix.cs (2)
29Unsafe.AsRef(in g._c) = (short)((g._c & ~VersionMask) | Version4Value);