mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Introduce and use rot() in rkiss.h
Also fix indentation. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
9069193125
commit
76506bd3d1
1 changed files with 15 additions and 11 deletions
10
src/rkiss.h
10
src/rkiss.h
|
@ -46,13 +46,17 @@ class RKISS {
|
||||||
// Keep variables always together
|
// Keep variables always together
|
||||||
struct S { uint64_t a, b, c, d; } s;
|
struct S { uint64_t a, b, c, d; } s;
|
||||||
|
|
||||||
|
uint64_t rot(uint64_t x, uint64_t k) const {
|
||||||
|
return (x << k) | (x >> (64 - k));
|
||||||
|
}
|
||||||
|
|
||||||
// Return 64 bit unsigned integer in between [0, 2^64 - 1]
|
// Return 64 bit unsigned integer in between [0, 2^64 - 1]
|
||||||
uint64_t rand64() {
|
uint64_t rand64() {
|
||||||
|
|
||||||
const uint64_t
|
const uint64_t
|
||||||
e = s.a - ((s.b << 7) | (s.b >> 57));
|
e = s.a - rot(s.b, 7);
|
||||||
s.a = s.b ^ ((s.c << 13) | (s.c >> 51));
|
s.a = s.b ^ rot(s.c, 13);
|
||||||
s.b = s.c + ((s.d << 37) | (s.d >> 27));
|
s.b = s.c + rot(s.d, 37);
|
||||||
s.c = s.d + e;
|
s.c = s.d + e;
|
||||||
return s.d = e + s.a;
|
return s.d = e + s.a;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue