Lines Matching refs:cur_val
851 void add_val (ipcp_value<valtype> *cur_val);
3728 /* Add value CUR_VAL and all yet-unsorted values it is dependent on to the
3733 value_topo_info<valtype>::add_val (ipcp_value<valtype> *cur_val)
3737 if (cur_val->dfs)
3741 cur_val->dfs = dfs_counter;
3742 cur_val->low_link = dfs_counter;
3744 cur_val->topo_next = stack;
3745 stack = cur_val;
3746 cur_val->on_stack = true;
3748 for (src = cur_val->sources; src; src = src->next)
3754 if (src->val->low_link < cur_val->low_link)
3755 cur_val->low_link = src->val->low_link;
3758 && src->val->dfs < cur_val->low_link)
3759 cur_val->low_link = src->val->dfs;
3762 if (cur_val->dfs == cur_val->low_link)
3771 v->scc_no = cur_val->dfs;
3776 while (v != cur_val);
3778 cur_val->topo_next = values_topo;
3779 values_topo = cur_val;