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); 1122if (value._c != _c) 1124return GetResult((uint)_c, (uint)value._c); 1412p += HexsToChars(p, _c >> 8, _c); 1469dest[21] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 12)); 1470dest[22] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 8)); 1471dest[23] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 4)); 1472dest[24] = TChar.CastFrom(HexConverter.ToCharLower(_c)); 1589if (left._c != right._c) 1591return (uint)left._c < (uint)right._c; 1650if (left._c != right._c) 1652return (uint)left._c < (uint)right._c; 1711if (left._c != right._c) 1713return (uint)left._c > (uint)right._c; 1772if (left._c != right._c) 1774return (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);