Searched refs:rndval (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/dev/random/ |
H A D | ivy.c | 71 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 D | darn.c | 68 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 D | sctp_timer.c | 256 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 D | sctputil.c | 2161 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()
|