Lines Matching refs:nth_array
969 kmp_nested_nthreads_t *nth_array) { in __kmp_parse_nested_num_threads() argument
1018 if (!nth_array->nth) { in __kmp_parse_nested_num_threads()
1020 nth_array->nth = (int *)KMP_INTERNAL_MALLOC(sizeof(int) * total * 2); in __kmp_parse_nested_num_threads()
1021 if (nth_array->nth == NULL) { in __kmp_parse_nested_num_threads()
1024 nth_array->size = total * 2; in __kmp_parse_nested_num_threads()
1026 if (nth_array->size < total) { in __kmp_parse_nested_num_threads()
1029 nth_array->size *= 2; in __kmp_parse_nested_num_threads()
1030 } while (nth_array->size < total); in __kmp_parse_nested_num_threads()
1032 nth_array->nth = (int *)KMP_INTERNAL_REALLOC( in __kmp_parse_nested_num_threads()
1033 nth_array->nth, sizeof(int) * nth_array->size); in __kmp_parse_nested_num_threads()
1034 if (nth_array->nth == NULL) { in __kmp_parse_nested_num_threads()
1039 nth_array->used = total; in __kmp_parse_nested_num_threads()
1057 nth_array->nth[i++] = 0; in __kmp_parse_nested_num_threads()
1061 nth_array->nth[i] = nth_array->nth[i - 1]; in __kmp_parse_nested_num_threads()
1091 nth_array->nth[i++] = num; in __kmp_parse_nested_num_threads()