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

/freebsd-11-stable/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-11-stable/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
151 REQUIRE(VALID_LFSR(lfsr2));
154 skip2 = lfsr2->state & 0x01;
158 state2 = lfsr_skipgenerate(lfsr2, skip1);

Completed in 110 milliseconds