Lines Matching refs:l_next
34 * An additional ctf_list_t is used to store the head (l_next) and tail
46 q->l_next = NULL;
49 p->l_next = q;
51 lp->l_next = q;
62 ctf_list_t *q = lp->l_next; /* q = head list element */
64 lp->l_next = p;
66 p->l_next = q;
84 p->l_prev->l_next = p->l_next;
86 lp->l_next = p->l_next;
88 if (p->l_next != NULL)
89 p->l_next->l_prev = p->l_prev;