3 instantiations of HashKey
Microsoft.Build (3)
Logging\BinaryLogger\BuildEventArgsWriter.cs (3)
1207HashKey hash = new HashKey(); 1292var hash = new HashKey(text); 1388return new HashKey(FowlerNollVo1aHash.Combine64(left.value, right.value));
17 references to HashKey
Microsoft.Build (17)
Logging\BinaryLogger\BuildEventArgsWriter.cs (17)
75private readonly Dictionary<HashKey, int> stringHashes = new Dictionary<HashKey, int>(); 80private readonly Dictionary<HashKey, int> nameValueListHashes = new Dictionary<HashKey, int>(); 1151HashKey hash = HashAllStrings(nameValueListBuffer); 1205private HashKey HashAllStrings(List<KeyValuePair<string, string>> nameValueList) 1207HashKey hash = new HashKey(); 1281private (int index, HashKey hash) HashString(string text) 1292var hash = new HashKey(text); 1365internal readonly struct HashKey : IEquatable<HashKey> 1386public static HashKey Combine(HashKey left, HashKey right) 1391public HashKey Add(HashKey other) => Combine(this, other); 1393public bool Equals(HashKey other) 1400if (obj is HashKey other)