Home | History | Annotate | Download | only in glsl

Lines Matching refs:before

154     * Insert a node in the list before the current node
156 void insert_before(exec_node *before)
158 before->next = this;
159 before->prev = this->prev;
161 this->prev->next = before;
162 this->prev = before;
166 * Insert another list in the list before the current node
168 void insert_before(struct exec_list *before);
456 inline void exec_node::insert_before(exec_list *before)
458 if (before->is_empty())
461 before->tail_pred->next = this;
462 before->head->prev = this->prev;
464 this->prev->next = before->head;
465 this->prev = before->tail_pred;
467 before->make_empty();