5 writes to _c
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Guid.cs (5)
76_c = BinaryPrimitives.ReverseEndianness(_c); 93_c = BinaryPrimitives.ReverseEndianness(_c); 109_c = (short)c; 132_c = c; 149_c = c;
33 references to _c
System.Private.CoreLib (33)
src\libraries\System.Private.CoreLib\src\System\Guid.cs (31)
76_c = BinaryPrimitives.ReverseEndianness(_c); 93_c = BinaryPrimitives.ReverseEndianness(_c); 287public int Version => (ushort)_c >>> 12; 325Unsafe.AsRef(in result._c) = (short)((result._c & ~VersionMask) | Version7Value); 1033if (value._c != _c) 1035return GetResult((uint)_c, (uint)value._c); 1323p += HexsToChars(p, _c >> 8, _c); 1380dest[21] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 12)); 1381dest[22] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 8)); 1382dest[23] = TChar.CastFrom(HexConverter.ToCharLower(_c >> 4)); 1383dest[24] = TChar.CastFrom(HexConverter.ToCharLower(_c)); 1500if (left._c != right._c) 1502return (uint)left._c < (uint)right._c; 1561if (left._c != right._c) 1563return (uint)left._c < (uint)right._c; 1622if (left._c != right._c) 1624return (uint)left._c > (uint)right._c; 1683if (left._c != right._c) 1685return (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);