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