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

1 2 3 4 5

  /src/tests/kernel/
t_signal_and_fpu.c 184 f0 = (double)arc4random();
185 f1 = f0 + (double)arc4random();
186 f2 = f0 + f1 + (double)arc4random();
187 f3 = f0 + f1 + f2 + (double)arc4random();
188 f4 = f0 + f1 + f2 + f3 + (double)arc4random();
189 f5 = f0 + f1 + f2 + f3 + f4 + (double)arc4random();
190 f6 = f0 + f1 + f2 + f3 + f4 + f5 + (double)arc4random();
191 f7 = f0 + f1 + f2 + f3 + f4 + f5 + f6 + (double)arc4random();
192 f8 = f0 + f1 + f2 + f3 + f4 + f5 + f6 + f7 + (double)arc4random();
193 f9 = f0 + f1 + f2 + f3 + f4 + f5 + f6 + f7 + f8 + (double)arc4random();
    [all...]
  /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/external/mit/expat/dist/lib/
random_arc4random.c 40 #include <stdlib.h> // for arc4random
48 const uint32_t random32 = arc4random();
  /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;
  /src/crypto/external/bsd/netpgp/dist/src/libbn/
rand.c 55 r = 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/crypto/external/bsd/openssh/dist/
crypto_api.h 25 #define small_random32() 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/tests/kernel/arch/x86/
sig_fpu.c 143 rcpc_exc = arc4random() & (X87_CW_RC | X87_CW_PC | X87_CW_SW_EXC);
241 rcpc_exc = arc4random() & (X87_CW_RC | X87_CW_PC | X87_CW_SW_EXC);
291 before.mxcsr = arc4random() & (MXCSR_FTZ | MXCSR_RC | MXCSR_DAZ);
292 exc = arc4random() & 0x3f;
  /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,

Completed in 32 milliseconds

1 2 3 4 5