9 references to Hash
System.Reflection.Metadata (9)
System\Reflection\Internal\Utilities\Hash.cs (2)
45int hashCode = Hash.FnvOffsetBias; 49hashCode = unchecked((hashCode ^ data[i]) * Hash.FnvPrime);
System\Reflection\Metadata\BlobContentId.cs (1)
128public override int GetHashCode() => Hash.Combine(Stamp, Guid.GetHashCode());
System\Reflection\Metadata\Ecma335\BlobDictionary.cs (1)
27int dictionaryKey = Hash.GetFNVHashCode(key);
System\Reflection\Metadata\PortablePdb\SequencePoint.cs (5)
44return Hash.Combine(Document.RowId, 45Hash.Combine(Offset, 46Hash.Combine(StartLine, 47Hash.Combine(StartColumn, 48Hash.Combine(EndLine, EndColumn)))));