1 instantiation of XxHash128
Microsoft.CodeAnalysis (1)
Text\SourceText.cs (1)
34private static readonly ObjectPool<XxHash128> s_contentHashPool = new ObjectPool<XxHash128>(() => new XxHash128());
8 references to XxHash128
Microsoft.CodeAnalysis (6)
CodeGen\PrivateImplementationDetails.cs (1)
574int bytesWritten = XxHash128.Hash(data.AsSpan(), hash);
Hashing\XxHash128.cs (2)
37/// <summary>Initializes a new instance of the <see cref="XxHash128"/> class using the default seed value 0.</summary> 42/// <summary>Initializes a new instance of the <see cref="XxHash128"/> class using the specified seed.</summary>
Text\SourceText.cs (3)
34private static readonly ObjectPool<XxHash128> s_contentHashPool = new ObjectPool<XxHash128>(() => new XxHash128()); 631var hash = s_contentHashPool.Allocate();
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourceNamedTypeSymbol_Extension.cs (2)
1151int bytesWritten = XxHash128.Hash(MemoryMarshal.AsBytes(shortSpan), hash); 1156int bytesWritten = XxHash128.Hash(MemoryMarshal.AsBytes(charSpan), hash);