Lines Matching defs:lst
360 kmp_task_pri_t *lst = task_team->tt.tt_task_pri_list;
361 if (lst->priority == pri) {
363 thread_data = &lst->td;
364 } else if (lst->priority < pri) {
370 list->next = lst;
373 kmp_task_pri_t *next_queue = lst->next;
375 lst = next_queue;
376 next_queue = lst->next;
378 // lst->priority > pri && (next == NULL || pri >= next->priority)
385 lst->next = list;
389 } else { // lst->priority > pri > next->priority
395 lst->next = list;
412 kmp_task_pri_t *lst = task_team->tt.tt_task_pri_list;
413 if (UNLIKELY(lst == NULL)) {
428 if (lst->priority == pri) {
430 thread_data = &lst->td;