Lines Matching refs:nth_array
1117 kmp_nested_nthreads_t *nth_array) { in __kmp_parse_nested_num_threads() argument
1168 if (!nth_array->nth) { in __kmp_parse_nested_num_threads()
1170 nth_array->nth = (int *)KMP_INTERNAL_MALLOC(sizeof(int) * total * 2); in __kmp_parse_nested_num_threads()
1171 if (nth_array->nth == NULL) { in __kmp_parse_nested_num_threads()
1174 nth_array->size = total * 2; in __kmp_parse_nested_num_threads()
1176 if (nth_array->size < total) { in __kmp_parse_nested_num_threads()
1179 nth_array->size *= 2; in __kmp_parse_nested_num_threads()
1180 } while (nth_array->size < total); in __kmp_parse_nested_num_threads()
1182 nth_array->nth = (int *)KMP_INTERNAL_REALLOC( in __kmp_parse_nested_num_threads()
1183 nth_array->nth, sizeof(int) * nth_array->size); in __kmp_parse_nested_num_threads()
1184 if (nth_array->nth == NULL) { in __kmp_parse_nested_num_threads()
1189 nth_array->used = total; in __kmp_parse_nested_num_threads()
1207 nth_array->nth[i++] = 0; in __kmp_parse_nested_num_threads()
1211 nth_array->nth[i] = nth_array->nth[i - 1]; in __kmp_parse_nested_num_threads()
1241 nth_array->nth[i++] = num; in __kmp_parse_nested_num_threads()