Home
last modified time | relevance | path

Searched refs:nth_array (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_settings.cpp1117 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()
[all …]