Searched refs:lfsr (Results 1 - 3 of 3) sorted by relevance

/bind-9.11.3/lib/isc/
H A Dlfsr.c9 /* $Id: lfsr.c,v 1.20 2007/06/19 23:47:17 tbox Exp $ */
19 #include <isc/lfsr.h>
25 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, argument
29 REQUIRE(VALID_LFSR(lfsr));
33 lfsr->state = state;
34 lfsr->bits = bits;
35 lfsr->tap = tap;
36 lfsr->count = count;
37 lfsr->reseed = reseed;
38 lfsr
50 lfsr_generate(isc_lfsr_t *lfsr) argument
77 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count) argument
109 lfsr_skipgenerate(isc_lfsr_t *lfsr, unsigned int skip) argument
123 isc_lfsr_skip(isc_lfsr_t *lfsr, unsigned int skip) argument
[all...]
/bind-9.11.3/lib/isc/include/isc/
H A Dlfsr.h9 /* $Id: lfsr.h,v 1.17 2007/06/19 23:47:18 tbox Exp $ */
14 /*! \file isc/lfsr.h */
25 * It MUST set "count" to a new value or the lfsr will never reseed again.
34 * needs to be taken to not change state once the lfsr is in operation.
49 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits,
62 *\li lfsr != NULL
70 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count);
76 *\li lfsr be valid.
84 isc_lfsr_skip(isc_lfsr_t *lfsr, unsigned int skip);
90 *\li lfsr b
[all...]
/bind-9.11.3/bin/tests/
H A Dlfsr_test.c16 #include <isc/lfsr.h>

Completed in 25 milliseconds