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