HomeSort by relevance Sort by last modified time
    Searched refs:arc4random (Results 1 - 25 of 30) sorted by null

1 2

  /external/dhcpcd-6.8.2/compat/
arc4random.h 33 uint32_t arc4random(void);
arc4random_uniform.c 20 /* We need to include config.h so we pickup either the system arc4random
52 r = arc4random();
arc4random.c 32 #include "arc4random.h"
146 arc4random() function
  /bionic/libc/upstream-openbsd/lib/libc/crypt/
arc4random_uniform.c 50 r = arc4random();
arc4random.c 1 /* $OpenBSD: arc4random.c,v 1.54 2015/09/13 08:31:47 guenther Exp $ */
66 #include "arc4random.h"
180 arc4random(void) function
189 DEF_WEAK(arc4random); variable
  /external/libevent/
evutil_rand.c 27 /* This file has our secure PRNG code. On platforms that have arc4random(),
28 * we just use that. Otherwise, we include arc4random.c as a bunch of static
29 * functions, and wrap it lightly. We don't expose the arc4random*() APIs
55 /* call arc4random() now to force it to self-initialize */
56 (void) arc4random();
99 ev_uint32_t u = arc4random();
106 *(ev_uint32_t*)b = arc4random();
111 ev_uint32_t u = arc4random();
134 #include "./arc4random.c"
arc4random.c 1 /* Portable arc4random.c based on arc4random.c from OpenBSD.
485 arc4random(void) function
549 r = arc4random();
  /cts/tests/tests/net/native/qtaguid/src/
NativeQtaguidTest.cpp 85 int tag = arc4random();
106 int tag = arc4random();
125 int tag = arc4random();
  /bionic/libc/upstream-openbsd/lib/libc/net/
res_random.c 183 tmp = arc4random();
188 tmp = arc4random();
  /external/valgrind/coregrind/
vg_preloaded.c 182 Darwin arc4random (rdar://6166275)
188 int VG_REPLACE_FUNCTION_ZU(libSystemZdZaZddylib, arc4random)(void);
189 int VG_REPLACE_FUNCTION_ZU(libSystemZdZaZddylib, arc4random)(void)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
random.cpp 53 return arc4random();
  /system/netd/tests/
tun_interface.cpp 64 mIfName = StringPrintf("netd%u_%u", getpid(), arc4random());
  /external/libcxx/src/
random.cpp 78 return arc4random();
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stdlib.h 243 arc4random(void);
  /art/libartbase/base/
utils.h 164 uint32_t operator() () { return arc4random(); }
  /bionic/libc/include/
stdlib.h 100 uint32_t arc4random(void);
  /hardware/qcom/wlan/qcwcn/wifi_hal/
common.h 187 #define get_requestid() ((arc4random()%REQUEST_ID_MAX) + 1)
  /external/dnsmasq/src/
util.c 41 return (unsigned short) (arc4random() >> 15);
  /external/dhcpcd-6.8.2/
configure 11 ARC4RANDOM=
68 --without-arc4random) ARC4RANDOM=no;;
546 if [ -z "$ARC4RANDOM" ]; then
547 printf "Testing for arc4random ... "
551 arc4random(); function
556 ARC4RANDOM=yes
558 ARC4RANDOM=no
560 echo "$ARC4RANDOM"
563 if [ "$ARC4RANDOM" = no ]; the
    [all...]
ipv6.c 245 /* Chaining arc4random should be good enough.
252 r = arc4random();
    [all...]
  /external/netcat/
netcat.c 908 y = (arc4random() & 0xFFFF) % (hi - lo);
  /frameworks/rs/cpu_ref/
rsCpuExecutable.cpp 235 uint32_t r = arc4random() & 0xffff;
  /system/extras/perfprofd/
perfprofdcore.cc 718 seed = arc4random();
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/
namespace.h 154 #define arc4random _arc4random
  /external/curl/lib/vtls/
darwinssl.c     [all...]

Completed in 864 milliseconds

1 2