Searched refs:__kmp_get_random (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp.h3162 extern unsigned short __kmp_get_random(kmp_info_t *thread);
H A Dkmp_runtime.cpp824 new_nthreads = __kmp_get_random(parent_team->t.t_threads[master_tid]);
3415 // __kmp_get_random: Get a random number using a linear congruential method.
3416 unsigned short __kmp_get_random(kmp_info_t *thread) { function
3422 KA_TRACE(30, ("__kmp_get_random: THREAD: %d, RETURN: %u\n",
H A Dkmp_tasking.cpp2840 victim_tid = __kmp_get_random(thread) % (nthreads - 1);
3807 // This should be similar to start_k = __kmp_get_random( thread ) % nthreads
3808 // but we cannot use __kmp_get_random here

Completed in 129 milliseconds