Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/stdlib/
Darc4random_uniform.c34 arc4random_uniform(uint32_t upper_bound) in arc4random_uniform() argument
38 if (upper_bound < 2) in arc4random_uniform()
42 min = -upper_bound % upper_bound; in arc4random_uniform()
56 return r % upper_bound; in arc4random_uniform()