Searched defs:pprev (Results 1 - 4 of 4) sorted by relevance

/include/linux/
H A Dlist_nulls.h22 struct hlist_nulls_node *next, **pprev; member in struct:hlist_nulls_node
51 return !h->pprev;
65 n->pprev = &h->first;
68 first->pprev = &n->next;
74 struct hlist_nulls_node **pprev = n->pprev; local
75 *pprev = next;
77 next->pprev = pprev;
83 n->pprev
[all...]
H A Dlist_bl.h38 struct hlist_bl_node *next, **pprev; member in struct:hlist_bl_node
46 h->pprev = NULL;
53 return !h->pprev;
83 first->pprev = &n->next;
84 n->pprev = &h->first;
91 struct hlist_bl_node **pprev = n->pprev; local
95 /* pprev may be `first`, so be careful not to lose the lock bit */
96 *pprev = (struct hlist_bl_node *)
98 ((unsigned long)*pprev
[all...]
H A Dlist.h573 h->pprev = NULL;
578 return !h->pprev;
589 struct hlist_node **pprev = n->pprev; local
590 *pprev = next;
592 next->pprev = pprev;
599 n->pprev = LIST_POISON2;
615 first->pprev = &n->next;
617 n->pprev
[all...]
H A Dtypes.h238 struct hlist_node *next, **pprev; member in struct:hlist_node

Completed in 158 milliseconds