23 references to ReadUInt64LE
System.IO.Hashing (23)
System\IO\Hashing\XxHash128.cs (6)
306ulong inputLo = ReadUInt64LE(source); 307ulong inputHi = ReadUInt64LE(source + length - 8); 427accLow ^= ReadUInt64LE(input2) + ReadUInt64LE(input2 + 8); 429accHigh ^= ReadUInt64LE(input1) + ReadUInt64LE(input1 + 8);
System\IO\Hashing\XxHash3.cs (2)
265ulong inputLow = ReadUInt64LE(source) ^ bitflipLow; 266ulong inputHigh = ReadUInt64LE(source + length - sizeof(ulong)) ^ bitflipHigh;
System\IO\Hashing\XxHashShared.cs (15)
424result64 += Multiply64To128ThenFold(accumulators[0] ^ ReadUInt64LE(secret), accumulators[1] ^ ReadUInt64LE(secret + 8)); 425result64 += Multiply64To128ThenFold(accumulators[2] ^ ReadUInt64LE(secret + 16), accumulators[3] ^ ReadUInt64LE(secret + 24)); 426result64 += Multiply64To128ThenFold(accumulators[4] ^ ReadUInt64LE(secret + 32), accumulators[5] ^ ReadUInt64LE(secret + 40)); 427result64 += Multiply64To128ThenFold(accumulators[6] ^ ReadUInt64LE(secret + 48), accumulators[7] ^ ReadUInt64LE(secret + 56)); 435ReadUInt64LE(source) ^ (secretLow + seed), 436ReadUInt64LE(source + sizeof(ulong)) ^ (secretHigh - seed)); 504WriteUInt64LE(destinationSecret + i, ReadUInt64LE(defaultSecret + i) + seed); 505WriteUInt64LE(destinationSecret + i + 8, ReadUInt64LE(defaultSecret + i + 8) - seed); 653ulong sourceVal = ReadUInt64LE(source + (8 * i)); 654ulong sourceKey = sourceVal ^ ReadUInt64LE(secret + (i * 8)); 746ulong xorWithKey = xorShift ^ ReadUInt64LE(secret);