2009-10-10 00:29:04 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* $RANDOM support.
|
|
|
|
*
|
2009-10-10 03:05:30 +05:30
|
|
|
* Copyright (C) 2009 Denys Vlasenko
|
2009-10-10 00:29:04 +05:30
|
|
|
*
|
|
|
|
* Licensed under GPLv2, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
2010-01-13 02:41:24 +05:30
|
|
|
#ifndef SHELL_RANDOM_H
|
|
|
|
#define SHELL_RANDOM_H 1
|
|
|
|
|
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
2009-10-10 00:29:04 +05:30
|
|
|
|
|
|
|
typedef struct random_t {
|
|
|
|
/* Random number generators */
|
|
|
|
int32_t galois_LFSR; /* Galois LFSR (fast but weak). signed! */
|
|
|
|
uint32_t LCG; /* LCG (fast but weak) */
|
|
|
|
} random_t;
|
|
|
|
|
2009-10-12 18:55:01 +05:30
|
|
|
#define UNINITED_RANDOM_T(rnd) \
|
|
|
|
((rnd)->galois_LFSR == 0)
|
|
|
|
|
2009-10-10 00:29:04 +05:30
|
|
|
#define INIT_RANDOM_T(rnd, nonzero, v) \
|
|
|
|
((rnd)->galois_LFSR = (nonzero), (rnd)->LCG = (v))
|
|
|
|
|
2009-10-12 18:55:01 +05:30
|
|
|
#define CLEAR_RANDOM_T(rnd) \
|
|
|
|
((rnd)->galois_LFSR = 0)
|
|
|
|
|
2009-10-10 00:29:04 +05:30
|
|
|
uint32_t next_random(random_t *rnd) FAST_FUNC;
|
2010-01-13 02:41:24 +05:30
|
|
|
|
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
|
|
|
|
|
|
|
#endif
|