HomeSort by: relevance | last modified time | path
    Searched refs:arc4random_uniform (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/crypto/external/bsd/openssh/dist/
random.h 33 u_int32_t arc4random_uniform(u_int32_t);
misc-agent.c 115 arc4random_uniform(sizeof(presentation_chars)-1)];
dh.c 205 which = arc4random_uniform(bestcount);
  /src/games/robots/
rnd_pos.c 58 pos.y = arc4random_uniform(Y_FIELDSIZE - 1) + 1;
59 pos.x = arc4random_uniform(X_FIELDSIZE - 1) + 1;
  /src/external/bsd/unbound/dist/compat/
arc4random_uniform.c 1 /* $OpenBSD: arc4random_uniform.c,v 1.1 2014/07/12 13:24:54 deraadt Exp $ */
34 arc4random_uniform(uint32_t upper_bound) function
  /src/games/random/
random.c 107 return arc4random_uniform(denom);
122 selected = (arc4random_uniform(denom) == 0);
132 selected = (arc4random_uniform(denom) == 0);
  /src/external/mpl/bind/dist/lib/isc/include/isc/
random.h 36 ((upper_bound) < 2 ? 0 : arc4random_uniform(upper_bound))
  /src/games/tetris/
tetris.h 133 #define randshape() (&shapes[arc4random_uniform(7)])
  /src/games/fish/
fish.c 116 if (arc4random_uniform(2) == 1) {
200 if (arc4random_uniform(3) == 1)
204 if (arc4random_uniform(4) == 1)
240 if (arc4random_uniform(3) == 1) {
252 if (arc4random_uniform(1024) == 0723) {
341 if (arc4random_uniform(1024) == 0723)
345 if (arc4random_uniform(1024) == 0723)
419 j = arc4random_uniform(TOTCARDS-i);
  /src/lib/libc/stdio/
gettemp.c 62 arc4random_uniform(uint32_t upper_bound) function
114 r = arc4random_uniform((unsigned int)(sizeof(padchar) - 1));
  /src/lib/libcrypt/
crypt-sha1.c 82 return hint - arc4random_uniform(hint / 4);
  /src/external/bsd/unbound/dist/util/
random.c 136 return (long)arc4random_uniform((uint32_t)x);
  /src/tests/net/net/
t_ip_reass.c 250 ipid = arc4random_uniform(UINT16_MAX + 1);
330 ipid = arc4random_uniform(UINT16_MAX + 1);
387 ipid = arc4random_uniform(UINT16_MAX + 1);
  /src/tests/kernel/
t_zombie.c 251 sig = 1 + arc4random_uniform(NSIG - 2);
  /src/usr.bin/shuffle/
shuffle.c 76 k = arc4random_uniform(j + 1);
  /src/games/fortune/fortune/
fortune.c 929 choice = arc4random_uniform(100);
949 choice = arc4random_uniform(Noprob_tbl.str_numstr);
990 choice = arc4random_uniform(parent->num_children);
1000 choice = arc4random_uniform(parent->tbl.str_numstr);
1080 fp->pos = arc4random_uniform(fp->tbl.str_numstr);
1086 fp->pos = arc4random_uniform(fp->tbl.str_numstr);
  /src/usr.sbin/timed/timed/
timed.c 241 sequence = (u_short)arc4random_uniform(UINT16_MAX);
332 delay1 = 1L + arc4random_uniform((100 * 1000L) - 1L);
335 delay2 = MINTOUT + arc4random_uniform(MAXTOUT - MINTOUT);
  /src/tests/lib/libc/stdio/
h_intr.c 322 return arc4random_uniform(2);
331 switch (arc4random_uniform(3)) {
  /src/external/bsd/unbound/include/
config.h 58 /* Define to 1 if you have the `arc4random_uniform' function. */
119 /* Define to 1 if you have the declaration of `arc4random_uniform', and to 0
1595 uint32_t arc4random_uniform(uint32_t upper_bound);
1607 uint32_t arc4random_uniform(uint32_t upper_bound);
  /src/include/
stdlib.h 278 uint32_t arc4random_uniform(uint32_t);
  /src/lib/libc/gen/
Makefile.inc 95 arc4random.3 arc4random_stir.3 arc4random.3 arc4random_uniform.3
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
sign-macos.c 57 return (uint16_t)(arc4random_uniform(65536));
  /src/external/bsd/libevent/dist/
arc4random.c 514 arc4random_uniform(unsigned int upper_bound) function
  /src/external/bsd/ntp/dist/sntp/libevent/
arc4random.c 515 arc4random_uniform(unsigned int upper_bound) function
  /src/external/bsd/unbound/dist/
config.h.in 57 /* Define to 1 if you have the `arc4random_uniform' function. */
115 /* Define to 1 if you have the declaration of `arc4random_uniform', and to 0
1580 uint32_t arc4random_uniform(uint32_t upper_bound);
1592 uint32_t arc4random_uniform(uint32_t upper_bound);

Completed in 34 milliseconds

1 2