Symbol: arc4random_uniform
crypto/libressl/apps/nc/netcat.c
1526
cp = arc4random_uniform(x + 1);
crypto/openssh/auth.c
623
*cp = hashchars[arc4random_uniform(sizeof(hashchars) - 1)];
crypto/openssh/clientloop.c
561
rate_fuzz = arc4random_uniform(fuzz_ns);
crypto/openssh/clientloop.c
563
interval_ns += arc4random_uniform(fuzz_ns) + rate_fuzz;
crypto/openssh/clientloop.c
653
arc4random_uniform(SSH_KEYSTROKE_CHAFF_RNG_MS));
crypto/openssh/dh.c
204
which = arc4random_uniform(bestcount);
crypto/openssh/mux.c
1293
r = arc4random_uniform(26+26+10);
crypto/openssh/sshd.c
544
r = arc4random_uniform(100);
games/boggle/boggle/bog.c
607
q = (int)arc4random_uniform(p + 1);
games/boggle/boggle/bog.c
615
board[i] = cubes[i][arc4random_uniform(6)];
games/boggle/boggle/bog.c
622
i = arc4random_uniform(ncubes);
games/boggle/boggle/bog.c
623
board[i] = SETHI(chal_cube[arc4random_uniform(6)]);
games/fortune/fortune/fortune.c
1012
choice = arc4random_uniform(parent->num_children);
games/fortune/fortune/fortune.c
1022
choice = arc4random_uniform(parent->tbl.str_numstr);
games/fortune/fortune/fortune.c
1104
fp->pos = arc4random_uniform(fp->tbl.str_numstr);
games/fortune/fortune/fortune.c
1110
fp->pos = arc4random_uniform(fp->tbl.str_numstr);
games/fortune/fortune/fortune.c
952
choice = arc4random_uniform(100);
games/fortune/fortune/fortune.c
971
choice = arc4random_uniform(Noprob_tbl.str_numstr);
games/hangman/getsym.c
45
pos = arc4random_uniform(symsize);
games/hangman/getword.c
57
pos = arc4random_uniform(Dict_size);
games/tetris/tetris.c
139
tmp = &shapes[arc4random_uniform(7)];
games/tetris/tetris.c
140
j = arc4random_uniform(4);
include/stdlib.h
271
arc4random_uniform(__uint32_t);
lib/libc/stdio/mktemp.c
138
rand = arc4random_uniform(sizeof(padchar) - 1);
lib/libssh/openbsd-compat/openbsd-compat.h
220
uint32_t arc4random_uniform(uint32_t);
tools/tools/netrate/kq_sendrecv/kq_sendcli/kq_sendcli.c
331
idx = arc4random_uniform(ndaddr);
usr.bin/strfile/strfile.c
439
i = arc4random_uniform(cnt);
usr.sbin/pw/pw_user.c
1028
salt[i] = chars[arc4random_uniform(sizeof(chars) - 1)];
usr.sbin/pw/pw_user.c
1048
pwbuf[i] = chars[arc4random_uniform(sizeof(chars)-1)];
usr.sbin/rtadvd/rtadvd.c
1015
delay = arc4random_uniform(MAX_RA_DELAY_TIME);
usr.sbin/rtadvd/rtadvd.c
1884
interval += arc4random_uniform(rai->rai_maxinterval -