Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libc/port/gen/
H A Drand.c62 uint_t new_seed; in rand_mt() local
67 new_seed = NEXT_SEED(old_seed); in rand_mt()
68 if (atomic_cas_uint(seed, old_seed, new_seed) == old_seed) in rand_mt()
69 return (NEXT_VALUE(new_seed)); in rand_mt()