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

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_posix.cc 19 struct thread_key { struct
24 thread_key(pthread_key_t key, pthread_mutex_t *mtx, int val, int *cnt) function in struct:thread_key
33 thread_key *k = (thread_key *)v;
49 thread_key *k = (thread_key *)p;
61 thread_key k1 = thread_key(key, &mtx, 42, &cnt);
62 thread_key k2 = thread_key(key, &mtx, 43, &cnt)
    [all...]
  /src/lib/libc/include/
arc4random.h 51 thread_key_t thread_key; member in struct:arc4random_global_state
  /src/tests/lib/libc/gen/
t_arc4random.c 87 prng = thr_getspecific(arc4random_global.thread_key);
553 memset(&arc4random_global.thread_key, 0x5a,
554 sizeof(arc4random_global.thread_key));
  /src/lib/libc/gen/
arc4random.c 667 if (thr_keycreate(&arc4random_global.thread_key,
690 ? thr_getspecific(arc4random_global.thread_key)
694 thr_setspecific(arc4random_global.thread_key, prng);
919 ? thr_getspecific(arc4random_global.thread_key)

Completed in 15 milliseconds