8seg/common/xorshift.c
2023-10-02 01:23:31 +02:00

12 lines
179 B
C

#include "xorshift.h"
uint32_t xorshift32(uint32_t x)
{
/* Algorithm "xor" from p. 4 of Marsaglia, "Xorshift RNGs" */
x ^= x << 13;
x ^= x >> 17;
x ^= x << 5;
return x;
}