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; 70Debug.Trace("HashCodeCombiner", "Adding " + n.ToString("x") + " --> " + _combinedHash.ToString("x")); 246internal long CombinedHash { get { return _combinedHash; } } 247internal int CombinedHash32 { get { return _combinedHash.GetHashCode(); } } 251return _combinedHash.ToString("x", CultureInfo.InvariantCulture);