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

1 2 3 4

  /src/crypto/external/apache2/openssl/lib/libdes/
orand_key.c 47 v = arc4random();
52 v = arc4random();
oenc_writ.c 131 *(u_int32_t *)&shortbuf[0] = arc4random();
132 *(u_int32_t *)&shortbuf[4] = arc4random();
  /src/crypto/external/bsd/openssl/lib/libdes/
orand_key.c 47 v = arc4random();
52 v = arc4random();
oenc_writ.c 131 *(u_int32_t *)&shortbuf[0] = arc4random();
132 *(u_int32_t *)&shortbuf[4] = arc4random();
  /src/crypto/external/bsd/openssl.old/lib/libdes/
orand_key.c 47 v = arc4random();
52 v = arc4random();
oenc_writ.c 131 *(u_int32_t *)&shortbuf[0] = arc4random();
132 *(u_int32_t *)&shortbuf[4] = arc4random();
  /src/external/bsd/unbound/dist/compat/
arc4random_uniform.c 51 r = arc4random();
  /src/external/bsd/libevent/dist/
evutil_rand.c 29 /* This file has our secure PRNG code. On platforms that have arc4random(),
30 * we just use that. Otherwise, we include arc4random.c as a bunch of static
31 * functions, and wrap it lightly. We don't expose the arc4random*() APIs
59 /* call arc4random() now to force it to self-initialize */
60 (void) arc4random();
105 ev_uint32_t u = arc4random();
112 *(ev_uint32_t*)b = arc4random();
117 ev_uint32_t u = arc4random();
140 #include "./arc4random.c"
  /src/external/bsd/ntp/dist/sntp/libevent/
evutil_rand.c 29 /* This file has our secure PRNG code. On platforms that have arc4random(),
30 * we just use that. Otherwise, we include arc4random.c as a bunch of static
31 * functions, and wrap it lightly. We don't expose the arc4random*() APIs
57 /* call arc4random() now to force it to self-initialize */
58 (void) arc4random();
101 ev_uint32_t u = arc4random();
108 *(ev_uint32_t*)b = arc4random();
113 ev_uint32_t u = arc4random();
136 #include "./arc4random.c"
  /src/lib/libcrypt/
pw_gensalt.c 92 __crypt_to64(&salt[0], arc4random(), 2);
118 __crypt_to64(&salt[5], arc4random(), 4);
134 __crypt_to64(&salt[3], arc4random(), 4);
135 __crypt_to64(&salt[7], arc4random(), 4);
157 __crypt_to64(&salt[n], arc4random(), 4);
158 __crypt_to64(&salt[n + 4], arc4random(), 4);
256 __crypt_tobase64(&salt[n], arc4random(), 4);
257 __crypt_tobase64(&salt[n + 4], arc4random(), 4);
258 __crypt_tobase64(&salt[n + 8], arc4random(), 4);
259 __crypt_tobase64(&salt[n + 12], arc4random(), 4)
    [all...]
  /src/external/mpl/bind/dist/lib/isc/include/isc/
random.h 33 #define isc_random32() arc4random()
  /src/lib/libc/gen/
randomid.c 217 p->ru_x = arc4random() % p->ru_m;
220 p->ru_seed = arc4random() & (~0U >> (32 - p->ru_bits + 1));
221 p->ru_seed2 = arc4random() & (~0U >> (32 - p->ru_bits + 1));
224 p->ru_b = (arc4random() & (~0U >> (32 - p->ru_bits))) | 1;
226 (arc4random() & (~0U >> (32 - p->ru_bits))) & (~1U), p->ru_m);
230 j = arc4random() % p->ru_n;
309 n = arc4random() & p->ru_skip;
Makefile.inc 11 SRCS+= alarm.c alphasort.c arc4random.c assert.c asysctl.c \
43 LINTFLAGS.arc4random.c+=-Ac11 # stdatomic.h
44 LINTFLAGS.arc4random.c+=-X 129 # expression has null effect (in atomic macros)
60 MAN+= alarm.3 arc4random.3 basename.3 bsd_signal.3 bswap.3 \
94 MLINKS+=arc4random.3 arc4random_addrandom.3 arc4random.3 arc4random_buf.3 \
95 arc4random.3 arc4random_stir.3 arc4random.3 arc4random_uniform.3
222 LINTFLAGS.arc4random.c += ${${ACTIVE_CC} == "clang":? -X 215 :}
  /src/crypto/external/bsd/netpgp/dist/src/libbn/
rand.c 55 r = arc4random();
  /src/crypto/external/bsd/openssh/dist/
crypto_api.h 25 #define small_random32() arc4random()
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
random.cc 195 return ::arc4random();
247 device_file = 1, prng = 2, rand_s = 4, getentropy = 8, arc4random = 16,
291 return arc4random;
359 else if (token == "arc4random")
360 which = arc4random;
447 if (which & arc4random)
621 case arc4random:
  /src/tests/lib/libc/
t_cdb.c 77 sorted_keys[i] = keys[i] = arc4random();
103 ATF_REQUIRE(cdbw_output(db, fd, "test database", arc4random) == 0);
  /src/sys/external/isc/libsodium/dist/test/default/
cmptest.h 32 # define rand(X) arc4random(X)
  /src/external/bsd/ntp/dist/libntp/lib/isc/
random.c 100 *val = arc4random();
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
random.cc 199 return ::arc4random();
251 device_file = 1, prng = 2, rand_s = 4, getentropy = 8, arc4random = 16,
295 return arc4random;
363 else if (token == "arc4random")
364 which = arc4random;
463 if (which & arc4random)
642 case arc4random:
  /src/external/apache2/llvm/dist/libcxx/src/
random.cpp 82 return arc4random();
  /src/external/bsd/unbound/dist/util/
random.c 38 * Thread safe random functions. Similar to arc4random() with an explicit
41 * The code in this file is based on arc4random from
42 * openssh-4.0p1/openbsd-compat/bsd-arc4random.c
128 return (long)arc4random() & MAX_VALUE;
  /src/sbin/fsirand/
fsirand.c 172 ufs_rw32((arc4random() & INT32_MAX)^ xorval,
181 ufs_rw32((arc4random() & INT32_MAX) ^ xorval,
  /src/usr.bin/nbperf/
nbperf.c 66 #define arc4random() rand() macro
76 nbperf->seed[0] = arc4random();
  /src/bin/rm/
rm.c 433 *(int *)(buf + i) = arc4random(); \
467 randint = arc4random();

Completed in 35 milliseconds

1 2 3 4