3 writes to _combinedHash
System.Web (3)
Util\HashCodeCombiner.cs (3)
30
_combinedHash
= 5381;
34
_combinedHash
= initialCombinedHash;
69
_combinedHash
= ((_combinedHash << 5) + _combinedHash) ^ n;
6 references to _combinedHash
System.Web (6)
Util\HashCodeCombiner.cs (6)
69
_combinedHash = ((
_combinedHash
<< 5) +
_combinedHash
) ^ n;
70
Debug.Trace("HashCodeCombiner", "Adding " + n.ToString("x") + " --> " +
_combinedHash
.ToString("x"));
246
internal long CombinedHash { get { return
_combinedHash
; } }
247
internal int CombinedHash32 { get { return
_combinedHash
.GetHashCode(); } }
251
return
_combinedHash
.ToString("x", CultureInfo.InvariantCulture);