Home
last modified time | relevance | path

Searched refs:last_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()
865 last_place = thread->th.th_last_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()
891 last_place = thread->th.th_last_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;
739 last_place = thread->th.th_last_place;
740 if (first_place < 0 || last_place < 0)
742 if (first_place <= last_place) {
744 end = last_place;
746 start = last_place;
Dkmp_runtime.cpp4566 int last_place = master_th->th.th_last_place; in __kmp_partition_places() local
4569 team->t.t_last_place = last_place; in __kmp_partition_places()
4574 team->t.t_id, masters_place, first_place, last_place)); in __kmp_partition_places()
4591 th->th.th_last_place = last_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()
4620 if (place == last_place) { in __kmp_partition_places()
4628 th->th.th_last_place = last_place; in __kmp_partition_places()
[all …]