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

1 2

  /external/clang/test/Analysis/
security-syntax-checks-no-emit.c 17 int rand_r(unsigned *);
32 rand_r(&b); // no-warning
  /external/compiler-rt/test/msan/
rand_r.cc 13 int v = rand_r(&seed);
15 // CHECK: in main{{.*}}rand_r.cc:[[@LINE-2]]
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
rand_r.c 1 /* $NetBSD: rand_r.c,v 1.6 2012/06/25 22:32:45 abs Exp $ */
37 __RCSID("$NetBSD: rand_r.c,v 1.6 2012/06/25 22:32:45 abs Exp $");
46 rand_r(unsigned int *seed) function
  /external/clang/test/CodeGen/
blocksignature.c 25 extern void rand_r(int (^b)(char x, float y)); // name a function present at runtime
27 rand_r(^(char x, float y){ return x + (int)y + param + rand(); }); // generate a local block binding param
  /external/compiler-rt/test/tsan/
real_deadlock_detector_stress_test.cc 46 int what = rand_r(&rnd) % 10;
57 int id = (rand_r(&rnd) % (kMutexes - max_locked - 1)) + max_locked + 1;
85 switch (rand_r(&rnd) % 4) {
125 int pos = rand_r(&rnd) % locked.size();
140 int id = rand_r(&rnd) % kMutexes;
  /system/update_engine/payload_consumer/
extent_reader_unittest.cc 54 sample_[i] = rand_r(&rand_seed) % 256;
160 size_t start = rand_r(&rand_seed) % blob.size();
161 size_t size = rand_r(&rand_seed) % (blob.size() - start);
cached_file_descriptor_unittest.cc 117 size_t start = rand_r(&rand_seed) % blob_in.size();
118 size_t size = rand_r(&rand_seed) % (blob_in.size() - start);
  /external/fio/os/
os-windows.h 23 /* Cygwin doesn't define rand_r if C99 or newer is being used */
24 #if defined(WIN32) && !defined(rand_r)
25 int rand_r(unsigned *);
os.h 313 val = rand_r(rs);
  /bionic/tests/headers/posix/
stdlib_h.c 116 FUNCTION(rand_r, int (*f)(unsigned*));
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stdlib.h 159 int rand_r(unsigned *); /* (TSF) */
  /external/eigen/unsupported/test/
cxx11_eventcount.cpp 15 // Visual studio doesn't implement a rand_r() function since its
22 return rand_r(s);
cxx11_runqueue.cpp 17 // Visual studio doesn't implement a rand_r() function since its
24 return rand_r(s);
  /external/puffin/src/
stream_unittest.cc 78 size_t size = rand_r(&rand_seed) % (buf.size() + 1);
80 uint64_t start = rand_r(&rand_seed) % (max_start + 1);
  /bionic/libc/include/
stdlib.h 106 int rand_r(unsigned int* __seed_ptr) __INTRODUCED_IN(21);
  /external/stressapptest/src/
os.cc 904 float_arr[i] = rand_r(&seed);
905 if (rand_r(&seed) % 2)
  /art/compiler/optimizing/
scheduler.h 404 size_t select = rand_r(&seed_) % nodes->size();
  /external/skia/src/pathops/
SkPathOpsDebug.h 33 #define SK_RAND(seed) rand_r(&seed)
  /external/skqp/src/pathops/
SkPathOpsDebug.h 33 #define SK_RAND(seed) rand_r(&seed)
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
dropout_utils_test.cc 100 uint32 seed = rand_r(&random_generator_seed) % 100 + i;
  /external/libxml2/
dict.c 186 rand_r(& rand_seed);
205 ret = rand_r(& rand_seed);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stdlib.h 386 #ifndef rand_r
387 #define rand_r(__seed) (__seed == __seed ? rand () : rand ()) macro
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvmuxerutil.cc 641 const int32 nn = rand_r(seed);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdlib.h 387 extern int rand_r (unsigned int *__seed) __THROW;
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
reduce_test.cc 93 input_data[i] = rand_r(&seed_) % 3;
94 if (rand_r(&seed_) % 2 == 0) {
    [all...]

Completed in 740 milliseconds

1 2