reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_runtime.cpp
 1270           __kmp_nested_nth.nth[level + 1];
 1321           __kmp_nested_nth.nth[level + 1];
 1961         (__kmp_nested_nth.nth[level + 1] != nthreads_icv)) {
 1962       nthreads_icv = __kmp_nested_nth.nth[level + 1];
 6808   while ((j < __kmp_nested_nth.used) && !__kmp_nested_nth.nth[j]) {
 6809     __kmp_nested_nth.nth[j] = __kmp_dflt_team_nth = __kmp_dflt_team_nth_ub =
 7515   KMP_INTERNAL_FREE(__kmp_nested_nth.nth);
 7516   __kmp_nested_nth.nth = NULL;
projects/openmp/runtime/src/kmp_settings.cpp
 1067   if (!nth_array->nth) {
 1069     nth_array->nth = (int *)KMP_INTERNAL_MALLOC(sizeof(int) * total * 2);
 1070     if (nth_array->nth == NULL) {
 1081       nth_array->nth = (int *)KMP_INTERNAL_REALLOC(
 1082           nth_array->nth, sizeof(int) * nth_array->size);
 1083       if (nth_array->nth == NULL) {
 1106         nth_array->nth[i++] = 0;
 1110         nth_array->nth[i] = nth_array->nth[i - 1];
 1110         nth_array->nth[i] = nth_array->nth[i - 1];
 1140       nth_array->nth[i++] = num;
 1150     __kmp_nested_nth.nth = (int *)KMP_INTERNAL_MALLOC(sizeof(int));
 1152     __kmp_nested_nth.nth[0] = __kmp_dflt_team_nth = __kmp_dflt_team_nth_ub =
 1156     if (__kmp_nested_nth.nth) {
 1157       __kmp_dflt_team_nth = __kmp_nested_nth.nth[0];
 1177       __kmp_str_buf_print(&buf, "%d", __kmp_nested_nth.nth[i]);