Home | History | Annotate | Download | only in linux

Lines Matching full:pprev

597 	struct hlist_node *next, **pprev;
606 h->pprev = NULL;
611 return !h->pprev;
622 struct hlist_node **pprev = n->pprev;
623 *pprev = next;
625 next->pprev = pprev;
632 n->pprev = LIST_POISON2;
657 n->pprev = LIST_POISON2;
681 new->pprev = old->pprev;
684 new->next->pprev = &new->next;
685 *new->pprev = new;
686 old->pprev = LIST_POISON2;
694 first->pprev = &n->next;
696 n->pprev = &h->first;
724 n->pprev = &h->first;
727 first->pprev = &n->next;
735 n->pprev = next->pprev;
737 next->pprev = &n->next;
738 *(n->pprev) = n;
746 next->pprev = &n->next;
749 next->next->pprev = &next->next;
773 n->pprev = next->pprev;
776 next->pprev = &n->next;
777 *(n->pprev) = n;
802 n->pprev = &prev->next;
806 n->next->pprev = &n->next;