HomeSort by: relevance | last modified time | path
    Searched refs:per_thread (Results 1 - 5 of 5) sorted by relevancy

  /src/lib/libc/include/
arc4random.h 56 bool per_thread; member in struct:arc4random_global_state
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_fuchsia.cc 67 static thread_local void *per_thread; variable in namespace:__asan
69 void *AsanTSDGet() { return per_thread; }
71 void AsanTSDSet(void *tsd) { per_thread = tsd; }
190 AsanThread::TSDDtor(per_thread);
asan_rtems.cc 76 static thread_local void *per_thread; variable in namespace:__asan
78 void *AsanTSDGet() { return per_thread; }
80 void AsanTSDSet(void *tsd) { per_thread = tsd; }
  /src/tests/lib/libc/gen/
t_arc4random.c 86 if (arc4random_global.per_thread)
552 arc4random_global.per_thread = false;
636 arc4random_global.per_thread = false;
  /src/lib/libc/gen/
arc4random.c 669 arc4random_global.per_thread = true;
689 prng = __predict_true(arc4random_global.per_thread)
692 if (__predict_false(prng == NULL) && arc4random_global.per_thread) {
918 prng = arc4random_global.per_thread

Completed in 32 milliseconds