Home | History | Annotate | Download | only in glsl

Lines Matching defs:tail

28  * Each doubly-linked list has a sentinel head and tail node.  These nodes
30 * pointer being \c NULL. The tail sentinel can be identified by its
34 * tail sentinel or the tail sentinel's \c prev poiner points to the head
45 * - A \c tail pointer that represents the \c prev pointer of the head
46 * sentinel node and the \c next pointer of the tail sentinel node. This
49 * tail sentinel node.
183 * Is this the sentinel at the tail of the list?
284 struct exec_node *tail;
314 head = (exec_node *) & tail;
315 tail = NULL;
323 * - Check to see if the \c head points to the \c tail.
331 return head == (exec_node *) &tail;
365 n->next = (exec_node *) &tail;
408 target->tail = NULL;
412 target->tail_pred->next = (exec_node *) &target->tail;
432 /* Make the tail of the source list be the tail of the target list.
435 this->tail_pred->next = (exec_node *) &this->tail;