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

/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dlfsr.c18 /* $Id: lfsr.c,v 1.20 2007/06/19 23:47:17 tbox Exp $ */
28 #include <isc/lfsr.h>
34 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, argument
38 REQUIRE(VALID_LFSR(lfsr));
42 lfsr->state = state;
43 lfsr->bits = bits;
44 lfsr->tap = tap;
45 lfsr->count = count;
46 lfsr->reseed = reseed;
47 lfsr
59 lfsr_generate(isc_lfsr_t *lfsr) argument
86 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count) argument
118 lfsr_skipgenerate(isc_lfsr_t *lfsr, unsigned int skip) argument
132 isc_lfsr_skip(isc_lfsr_t *lfsr, unsigned int skip) argument
[all...]
/macosx-10.9.5/ntp-88/lib/isc/
H A Dlfsr.c18 /* $Id: lfsr.c,v 1.20 2007/06/19 23:47:17 tbox Exp $ */
28 #include <isc/lfsr.h>
34 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, argument
38 REQUIRE(VALID_LFSR(lfsr));
42 lfsr->state = state;
43 lfsr->bits = bits;
44 lfsr->tap = tap;
45 lfsr->count = count;
46 lfsr->reseed = reseed;
47 lfsr
59 lfsr_generate(isc_lfsr_t *lfsr) argument
86 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count) argument
118 lfsr_skipgenerate(isc_lfsr_t *lfsr, unsigned int skip) argument
132 isc_lfsr_skip(isc_lfsr_t *lfsr, unsigned int skip) argument
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/include/isc/
H A Dlfsr.h18 /* $Id: lfsr.h,v 1.17 2007/06/19 23:47:18 tbox Exp $ */
23 /*! \file isc/lfsr.h */
34 * It MUST set "count" to a new value or the lfsr will never reseed again.
43 * needs to be taken to not change state once the lfsr is in operation.
58 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits,
71 *\li lfsr != NULL
79 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count);
85 *\li lfsr be valid.
93 isc_lfsr_skip(isc_lfsr_t *lfsr, unsigned int skip);
99 *\li lfsr b
[all...]
/macosx-10.9.5/ntp-88/lib/isc/include/isc/
H A Dlfsr.h18 /* $Id: lfsr.h,v 1.17 2007/06/19 23:47:18 tbox Exp $ */
23 /*! \file isc/lfsr.h */
34 * It MUST set "count" to a new value or the lfsr will never reseed again.
43 * needs to be taken to not change state once the lfsr is in operation.
58 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits,
71 *\li lfsr != NULL
79 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count);
85 *\li lfsr be valid.
93 isc_lfsr_skip(isc_lfsr_t *lfsr, unsigned int skip);
99 *\li lfsr b
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/demo/
H A Dtiming.c29 unsigned long lfsr = 0xAAAAAAAAUL; variable
33 if (lfsr & 0x80000000UL) {
34 lfsr = ((lfsr << 1) ^ 0x8000001BUL) & 0xFFFFFFFFUL;
37 lfsr <<= 1;
H A Ddemo.c27 unsigned long lfsr = 0xAAAAAAAAUL; variable
31 if (lfsr & 0x80000000UL) {
32 lfsr = ((lfsr << 1) ^ 0x8000001BUL) & 0xFFFFFFFFUL;
35 lfsr <<= 1;
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/
H A Dlfsr_test.c25 #include <isc/lfsr.h>
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/win32/
H A Dlibisc.mak150 -@erase "$(INTDIR)\lfsr.obj"
261 "$(INTDIR)\lfsr.obj" \
376 -@erase "$(INTDIR)\lfsr.obj"
377 -@erase "$(INTDIR)\lfsr.sbr"
530 "$(INTDIR)\lfsr.sbr" \
618 "$(INTDIR)\lfsr.obj" \
1495 SOURCE=..\lfsr.c
1500 "$(INTDIR)\lfsr.obj" : $(SOURCE) "$(INTDIR)"
1507 "$(INTDIR)\lfsr.obj" "$(INTDIR)\lfsr
[all...]
/macosx-10.9.5/ntp-88/lib/isc/win32/
H A Dlibisc.mak147 -@erase "$(INTDIR)\lfsr.obj"
256 "$(INTDIR)\lfsr.obj" \
367 -@erase "$(INTDIR)\lfsr.obj"
368 -@erase "$(INTDIR)\lfsr.sbr"
519 "$(INTDIR)\lfsr.sbr" \
605 "$(INTDIR)\lfsr.obj" \
1446 SOURCE=..\lfsr.c
1451 "$(INTDIR)\lfsr.obj" : $(SOURCE) "$(INTDIR)"
1458 "$(INTDIR)\lfsr.obj" "$(INTDIR)\lfsr
[all...]

Completed in 213 milliseconds