Home
last modified time | relevance | path

Searched refs:rndval (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/dev/random/
H A Divy.c71 u_long rndval, seed_iterations, i; in x86_rdrand_store() local
94 : "+r" (retry), "=r" (rndval) : : "cc"); in x86_rdrand_store()
98 *buf = rndval; in x86_rdrand_store()
105 u_long rndval; in x86_rdseed_store() local
116 : "+r" (retry), "=r" (rndval) : : "cc"); in x86_rdseed_store()
117 *buf = rndval; in x86_rdseed_store()
145 u_long *b, rndval; in random_ivy_read() local
151 if (!x86_rng_store(&rndval)) in random_ivy_read()
153 *b++ = rndval; in random_ivy_read()
H A Ddarn.c68 u_long rndval; in darn_rng_store() local
81 "+r"(rndval)); in darn_rng_store()
82 if (rndval != ~0) in darn_rng_store()
86 *buf = rndval; in darn_rng_store()
94 u_long *b, rndval; in random_darn_read() local
100 if (darn_rng_store(&rndval) == 0) in random_darn_read()
102 *b++ = rndval; in random_darn_read()
/freebsd/sys/netinet/
H A Dsctp_timer.c256 uint32_t rndval; in sctp_find_alternate_net() local
260 rndval = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); in sctp_find_alternate_net()
261 memcpy(stcb->asoc.hb_random_values, &rndval, sizeof(stcb->asoc.hb_random_values)); in sctp_find_alternate_net()
300 uint32_t rndval; in sctp_find_alternate_net() local
304 rndval = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); in sctp_find_alternate_net()
305 memcpy(stcb->asoc.hb_random_values, &rndval, in sctp_find_alternate_net()
H A Dsctputil.c2161 uint32_t rndval, jitter; in sctp_timer_start() local
2296 rndval = sctp_select_initial_TSN(&inp->sctp_ep); in sctp_timer_start()
2297 jitter = rndval % to_ticks; in sctp_timer_start()