Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/lib/
H A Drand.c15 unsigned int rand_r(unsigned int *seedp) in rand_r() argument
17 *seedp ^= (*seedp << 13); in rand_r()
18 *seedp ^= (*seedp >> 17); in rand_r()
19 *seedp ^= (*seedp << 5); in rand_r()
21 return *seedp; in rand_r()
/OK3568_Linux_fs/u-boot/drivers/crypto/
H A Dace_sha.c178 unsigned int rand_r(unsigned int *seedp) in rand_r() argument
180 srand(*seedp); in rand_r()
/OK3568_Linux_fs/u-boot/drivers/rng/
H A Drockchip_rand.c10 unsigned int rand_r(unsigned int *seedp) in rand_r() argument
/OK3568_Linux_fs/u-boot/include/
H A Dcommon.h705 unsigned int rand_r(unsigned int *seedp);