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); 1124if (value._c != _c) 1126return GetResult((uint)_c, (uint)value._c); 1414p += HexsToChars(p, _c >> 8, _c); 1471dest[21] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 12)); 1472dest[22] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 8)); 1473dest[23] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 4)); 1474dest[24] = TChar.CastFrom(HexConverter.ToCharLower(_c)); 1591if (left._c != right._c) 1593return (uint)left._c < (uint)right._c; 1652if (left._c != right._c) 1654return (uint)left._c < (uint)right._c; 1713if (left._c != right._c) 1715return (uint)left._c > (uint)right._c; 1774if (left._c != right._c) 1776return (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);