Searched refs:__kmp_nested_nth (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dompd-specific.h145 OMPD_SIZEOF(__kmp_nested_nth) \
H A Dkmp_runtime.cpp1264 if (__kmp_nested_nth.used && (level + 1 < __kmp_nested_nth.used)) {
1266 __kmp_nested_nth.nth[level + 1];
1315 if (__kmp_nested_nth.used && (level + 1 < __kmp_nested_nth.used)) {
1317 __kmp_nested_nth.nth[level + 1];
2077 if ((level + 1 < __kmp_nested_nth.used) &&
2078 (__kmp_nested_nth.nth[level + 1] != nthreads_icv)) {
2079 nthreads_icv = __kmp_nested_nth.nth[level + 1];
7429 while ((j < __kmp_nested_nth
[all...]
H A Dkmp_global.cpp200 kmp_nested_nthreads_t __kmp_nested_nth = {NULL, 0, 0}; variable
H A Dkmp_settings.cpp1251 __kmp_nested_nth.nth = (int *)KMP_INTERNAL_MALLOC(sizeof(int));
1252 __kmp_nested_nth.size = __kmp_nested_nth.used = 1;
1253 __kmp_nested_nth.nth[0] = __kmp_dflt_team_nth = __kmp_dflt_team_nth_ub =
1256 __kmp_parse_nested_num_threads(name, value, &__kmp_nested_nth);
1257 if (__kmp_nested_nth.nth) {
1258 __kmp_dflt_team_nth = __kmp_nested_nth.nth[0];
1341 if (__kmp_nested_nth.used) {
1344 for (int i = 0; i < __kmp_nested_nth.used; i++) {
1345 __kmp_str_buf_print(&buf, "%d", __kmp_nested_nth
[all...]
H A Dkmp.h3543 extern kmp_nested_nthreads_t __kmp_nested_nth;

Completed in 190 milliseconds