macro LFDS710_PRNG_ST_GENERATE

From liblfds.org
Revision as of 18:17, 30 May 2016 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Source Files

└───liblfds710
    └───inc
        └───liblfds710
                lfds710_prng.h

Opaque Structures

struct lfds710_prng_st_state;

Macro

#define LFDS710_PRNG_ST_GENERATE( prng_st_state, random_value )

Parameters

prng_st_state

A struct lfds710_prng_st_state. Not a pointer to it - the struct itself.

random_value.

A lfds710_pal_uint_t. Not a pointer to it - the varible itself. It will be set by the macro.

Return Value

No return value.

Notes

The PRNG state is moved on to its next number, and that number is passed through the PRNG mixing function and then written into the argument random_value.

This is the generate macro for the single-threaded PRNG variant.

See Also