Searched refs:lfsr1 (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.1-release/contrib/ntp/lib/isc/include/isc/
H A Dlfsr.h103 isc_lfsr_generate32(isc_lfsr_t *lfsr1, isc_lfsr_t *lfsr2);
123 *\li lfsr1 and lfsr2 be valid.
/freebsd-10.1-release/contrib/ntp/lib/isc/
H A Dlfsr.c141 * Skip states in lfsr1 and lfsr2 using the other's current state.
142 * Return the final state of lfsr1 ^ lfsr2.
145 isc_lfsr_generate32(isc_lfsr_t *lfsr1, isc_lfsr_t *lfsr2) argument
150 REQUIRE(VALID_LFSR(lfsr1));
153 skip1 = lfsr1->state & 0x01;
157 state1 = lfsr_skipgenerate(lfsr1, skip2);

Completed in 75 milliseconds