Home
last modified time | relevance | path

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

/external/llvm-project/openmp/runtime/src/
Dkmp_settings.cpp1016 kmp_nested_nthreads_t *nth_array) { in __kmp_parse_nested_num_threads() argument
1067 if (!nth_array->nth) { in __kmp_parse_nested_num_threads()
1069 nth_array->nth = (int *)KMP_INTERNAL_MALLOC(sizeof(int) * total * 2); in __kmp_parse_nested_num_threads()
1070 if (nth_array->nth == NULL) { in __kmp_parse_nested_num_threads()
1073 nth_array->size = total * 2; in __kmp_parse_nested_num_threads()
1075 if (nth_array->size < total) { in __kmp_parse_nested_num_threads()
1078 nth_array->size *= 2; in __kmp_parse_nested_num_threads()
1079 } while (nth_array->size < total); in __kmp_parse_nested_num_threads()
1081 nth_array->nth = (int *)KMP_INTERNAL_REALLOC( in __kmp_parse_nested_num_threads()
1082 nth_array->nth, sizeof(int) * nth_array->size); in __kmp_parse_nested_num_threads()
[all …]