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

/freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_global.cpp192 kmp_nested_nthreads_t __kmp_nested_nth = {NULL, 0, 0}; variable
H A Dkmp_settings.cpp1150 __kmp_nested_nth.nth = (int *)KMP_INTERNAL_MALLOC(sizeof(int));
1151 __kmp_nested_nth.size = __kmp_nested_nth.used = 1;
1152 __kmp_nested_nth.nth[0] = __kmp_dflt_team_nth = __kmp_dflt_team_nth_ub =
1155 __kmp_parse_nested_num_threads(name, value, &__kmp_nested_nth);
1156 if (__kmp_nested_nth.nth) {
1157 __kmp_dflt_team_nth = __kmp_nested_nth.nth[0];
1173 if (__kmp_nested_nth.used) {
1176 for (int i = 0; i < __kmp_nested_nth.used; i++) {
1177 __kmp_str_buf_print(&buf, "%d", __kmp_nested_nth
[all...]
H A Dkmp_runtime.cpp1268 if (__kmp_nested_nth.used && (level + 1 < __kmp_nested_nth.used)) {
1270 __kmp_nested_nth.nth[level + 1];
1319 if (__kmp_nested_nth.used && (level + 1 < __kmp_nested_nth.used)) {
1321 __kmp_nested_nth.nth[level + 1];
1939 if ((level + 1 < __kmp_nested_nth.used) &&
1940 (__kmp_nested_nth.nth[level + 1] != nthreads_icv)) {
1941 nthreads_icv = __kmp_nested_nth.nth[level + 1];
6776 while ((j < __kmp_nested_nth
[all...]
H A Dkmp.h2995 extern kmp_nested_nthreads_t __kmp_nested_nth;

Completed in 126 milliseconds