Home
last modified time | relevance | path

Searched refs:seedp (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/lib/
H A Drand.c14 unsigned int rand_r(unsigned int *seedp) in rand_r() argument
16 *seedp ^= (*seedp << 13); in rand_r()
17 *seedp ^= (*seedp >> 17); in rand_r()
18 *seedp ^= (*seedp << 5); in rand_r()
20 return *seedp; in rand_r()
/openbmc/u-boot/drivers/crypto/
H A Dace_sha.c177 unsigned int rand_r(unsigned int *seedp) in rand_r() argument
179 srand(*seedp); in rand_r()
/openbmc/u-boot/include/
H A Dcommon.h500 unsigned int rand_r(unsigned int *seedp);