1 instantiation of XxHash64
System.IO.Hashing (1)
System\IO\Hashing\XxHash64.cs (1)
69public XxHash64 Clone() => new(_seed, _state, _holdback, _length);
10 references to XxHash64
System.IO.Hashing (10)
System\IO\Hashing\XxHash128.cs (4)
256return new Hash128(XxHash64.Avalanche(seed ^ BitFlipL), XxHash64.Avalanche(seed ^ BitFlipH)); 281return new Hash128(XxHash64.Avalanche(keyedLo), XxHash64.Avalanche(keyedHi));
System\IO\Hashing\XxHash3.cs (2)
227return XxHash64.Avalanche(seed ^ SecretXor); 245return XxHash64.Avalanche(combined ^ (SecretXor + seed));
System\IO\Hashing\XxHash64.cs (4)
29/// Initializes a new instance of the <see cref="XxHash64"/> class. 41/// Initializes a new instance of the <see cref="XxHash64"/> class with 54/// <summary>Initializes a new instance of the <see cref="XxHash64"/> class using the state from another instance.</summary> 69public XxHash64 Clone() => new(_seed, _state, _holdback, _length);