Lines Matching refs:proc_bind

1166   kmp_proc_bind_t proc_bind = this_thr->th.th_set_proc_bind;
1167 if (this_thr->th.th_current_task->td_icvs.proc_bind == proc_bind_false) {
1168 proc_bind = proc_bind_false;
1169 } else if (proc_bind == proc_bind_default) {
1170 // No proc_bind clause was specified, so use the current value
1172 proc_bind = this_thr->th.th_current_task->td_icvs.proc_bind;
1215 proc_bind, &this_thr->th.th_current_task->td_icvs,
1275 this_thr->th.th_current_task->td_icvs.proc_bind =
1947 kmp_proc_bind_t proc_bind = master_th->th.th_set_proc_bind;
1950 if (master_th->th.th_current_task->td_icvs.proc_bind == proc_bind_false) {
1951 proc_bind = proc_bind_false;
1953 if (proc_bind == proc_bind_default) {
1954 // No proc_bind clause specified; use current proc-bind-var for this
1956 proc_bind = master_th->th.th_current_task->td_icvs.proc_bind;
1958 /* else: The proc_bind policy was specified explicitly on parallel clause.
1964 master_th->th.th_current_task->td_icvs.proc_bind)) {
1980 new_icvs.proc_bind = proc_bind_icv;
1989 proc_bind, &new_icvs,
1998 proc_bind,
4499 kmp_proc_bind_t proc_bind = team->t.t_proc_bind;
4506 KA_TRACE(20, ("__kmp_partition_places: enter: proc_bind = %d T#%d(%d:0) "
4508 proc_bind, __kmp_gtid_from_thread(team->t.t_threads[0]),
4511 switch (proc_bind) {
4514 // serial teams might have the proc_bind policy set to proc_bind_default. It
4515 // doesn't matter, as we don't rebind master thread for any proc_bind policy
4936 "proc_bind = %d, partition = [%d,%d]\n",
7203 // Set the proc_bind var to use in the following parallel region.
7204 void __kmp_push_proc_bind(ident_t *id, int gtid, kmp_proc_bind_t proc_bind) {
7206 thr->th.th_set_proc_bind = proc_bind;