blob: e22a2e88b53ffca49984c924d6d83772d9c7a8d1 [file] [log] [blame]
Denys Vlasenko3ea2e822009-10-09 20:59:04 +02001/* vi: set sw=4 ts=4: */
2/*
3 * $RANDOM support.
4 *
Denys Vlasenkoe3c6e192009-10-09 23:35:30 +02005 * Copyright (C) 2009 Denys Vlasenko
Denys Vlasenko3ea2e822009-10-09 20:59:04 +02006 *
7 * Licensed under GPLv2, see file LICENSE in this tarball for details.
8 */
9
10typedef struct random_t {
11 /* Random number generators */
12 int32_t galois_LFSR; /* Galois LFSR (fast but weak). signed! */
13 uint32_t LCG; /* LCG (fast but weak) */
14} random_t;
15
Denys Vlasenko76ace252009-10-12 15:25:01 +020016#define UNINITED_RANDOM_T(rnd) \
17 ((rnd)->galois_LFSR == 0)
18
Denys Vlasenko3ea2e822009-10-09 20:59:04 +020019#define INIT_RANDOM_T(rnd, nonzero, v) \
20 ((rnd)->galois_LFSR = (nonzero), (rnd)->LCG = (v))
21
Denys Vlasenko76ace252009-10-12 15:25:01 +020022#define CLEAR_RANDOM_T(rnd) \
23 ((rnd)->galois_LFSR = 0)
24
Denys Vlasenko3ea2e822009-10-09 20:59:04 +020025uint32_t next_random(random_t *rnd) FAST_FUNC;