Home
last modified time | relevance | path

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

/external/llvm-project/openmp/runtime/src/
Dkmp_ftn_entry.h855 int gtid, num_places, first_place, last_place; in KMP_EXPAND_NAME()
864 first_place = thread->th.th_first_place; in KMP_EXPAND_NAME()
866 if (first_place < 0 || last_place < 0) in KMP_EXPAND_NAME()
868 if (first_place <= last_place) in KMP_EXPAND_NAME()
869 num_places = last_place - first_place + 1; in KMP_EXPAND_NAME()
871 num_places = __kmp_affinity_num_masks - first_place + last_place + 1; in KMP_EXPAND_NAME()
881 int i, gtid, place_num, first_place, last_place, start, end; in KMP_EXPAND_NAME()
890 first_place = thread->th.th_first_place; in KMP_EXPAND_NAME()
892 if (first_place < 0 || last_place < 0) in KMP_EXPAND_NAME()
894 if (first_place <= last_place) { in KMP_EXPAND_NAME()
[all …]
Dompt-general.cpp730 int i, gtid, place_num, first_place, last_place, start, end;
738 first_place = thread->th.th_first_place;
740 if (first_place < 0 || last_place < 0)
742 if (first_place <= last_place) {
743 start = first_place;
747 end = first_place;
Dkmp_runtime.cpp4565 int first_place = master_th->th.th_first_place; in __kmp_partition_places() local
4568 team->t.t_first_place = first_place; in __kmp_partition_places()
4574 team->t.t_id, masters_place, first_place, last_place)); in __kmp_partition_places()
4590 th->th.th_first_place = first_place; in __kmp_partition_places()
4601 f, masters_place, first_place, last_place)); in __kmp_partition_places()
4609 if (first_place <= last_place) { in __kmp_partition_places()
4610 n_places = last_place - first_place + 1; in __kmp_partition_places()
4612 n_places = __kmp_affinity_num_masks - first_place + last_place + 1; in __kmp_partition_places()
4621 place = first_place; in __kmp_partition_places()
4627 th->th.th_first_place = first_place; in __kmp_partition_places()
[all …]