Searched refs:pprev (Results 1 - 25 of 59) sorted by relevance

123

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/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 Drculist_nulls.h22 * zero the pprev pointer so list_unhashed() will return true after
36 n->pprev = NULL;
62 n->pprev = LIST_POISON2;
90 n->pprev = &h->first;
93 first->pprev = &n->next;
H A Drculist.h110 * zero the pprev pointer so list_unhashed() will return true after
124 n->pprev = NULL;
300 n->pprev = LIST_POISON2;
316 new->pprev = old->pprev;
317 rcu_assign_pointer(*new->pprev, new);
319 new->next->pprev = &new->next;
320 old->pprev = LIST_POISON2;
348 n->pprev = &h->first;
351 first->pprev
[all...]
H A Dlist.h572 h->pprev = NULL;
577 return !h->pprev;
588 struct hlist_node **pprev = n->pprev; local
589 *pprev = next;
591 next->pprev = pprev;
598 n->pprev = LIST_POISON2;
614 first->pprev = &n->next;
616 n->pprev
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/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 Drculist_nulls.h22 * zero the pprev pointer so list_unhashed() will return true after
36 n->pprev = NULL;
62 n->pprev = LIST_POISON2;
90 n->pprev = &h->first;
93 first->pprev = &n->next;
H A Drculist.h110 * zero the pprev pointer so list_unhashed() will return true after
124 n->pprev = NULL;
300 n->pprev = LIST_POISON2;
316 new->pprev = old->pprev;
317 rcu_assign_pointer(*new->pprev, new);
319 new->next->pprev = &new->next;
320 old->pprev = LIST_POISON2;
348 n->pprev = &h->first;
351 first->pprev
[all...]
H A Dlist.h572 h->pprev = NULL;
577 return !h->pprev;
588 struct hlist_node **pprev = n->pprev; local
589 *pprev = next;
591 next->pprev = pprev;
598 n->pprev = LIST_POISON2;
614 first->pprev = &n->next;
616 n->pprev
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/security/secfrw/utils/
H A Dbcm_llist.c62 list_t *pprev, *plist; local
77 for (plist = *head, pprev = NULL; plist; ) {
80 if (pprev == NULL)
83 pprev->next = plist->next;
89 pprev = plist;
105 list_t *pprev, *plist; local
120 for (plist = *head, pprev = NULL; plist; ) {
123 if (pprev == NULL)
126 pprev->next = plist->next;
132 pprev
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/ipv4/
H A Dtunnel4.c28 struct xfrm_tunnel **pprev; local
34 for (pprev = fam_handlers(family); *pprev; pprev = &(*pprev)->next) {
35 if ((*pprev)->priority > priority)
37 if ((*pprev)->priority == priority)
41 handler->next = *pprev;
42 *pprev = handler;
55 struct xfrm_tunnel **pprev; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/ipv6/
H A Dtunnel6.c39 struct xfrm6_tunnel **pprev; local
45 for (pprev = (family == AF_INET6) ? &tunnel6_handlers : &tunnel46_handlers;
46 *pprev; pprev = &(*pprev)->next) {
47 if ((*pprev)->priority > priority)
49 if ((*pprev)->priority == priority)
53 handler->next = *pprev;
54 *pprev = handler;
68 struct xfrm6_tunnel **pprev; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/ipv4/
H A Dtunnel4.c28 struct xfrm_tunnel **pprev; local
34 for (pprev = fam_handlers(family); *pprev; pprev = &(*pprev)->next) {
35 if ((*pprev)->priority > priority)
37 if ((*pprev)->priority == priority)
41 handler->next = *pprev;
42 *pprev = handler;
55 struct xfrm_tunnel **pprev; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/ipv6/
H A Dtunnel6.c39 struct xfrm6_tunnel **pprev; local
45 for (pprev = (family == AF_INET6) ? &tunnel6_handlers : &tunnel46_handlers;
46 *pprev; pprev = &(*pprev)->next) {
47 if ((*pprev)->priority > priority)
49 if ((*pprev)->priority == priority)
53 handler->next = *pprev;
54 *pprev = handler;
68 struct xfrm6_tunnel **pprev; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/util/include/linux/
H A Dtypes.h18 struct hlist_node *next, **pprev; member in struct:hlist_node
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/util/include/linux/
H A Dtypes.h18 struct hlist_node *next, **pprev; member in struct:hlist_node
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iptables/libiptc/
H A Dlinux_list.h514 struct hlist_node *next, **pprev; member in struct:hlist_node
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev; local
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iptables-1.4.x/libiptc/
H A Dlinux_list.h514 struct hlist_node *next, **pprev; member in struct:hlist_node
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev; local
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iptables/libiptc/
H A Dlinux_list.h514 struct hlist_node *next, **pprev; member in struct:hlist_node
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev; local
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iptables-1.4.x/libiptc/
H A Dlinux_list.h514 struct hlist_node *next, **pprev; member in struct:hlist_node
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev; local
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iptables/libiptc/
H A Dlinux_list.h514 struct hlist_node *next, **pprev; member in struct:hlist_node
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev; local
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iptables-1.4.x/libiptc/
H A Dlinux_list.h514 struct hlist_node *next, **pprev; member in struct:hlist_node
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev; local
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/mn10300/mm/
H A Dpgtable.c116 struct page *next, **pprev, *page = virt_to_page(pgd); local
118 pprev = (struct page **) page_private(page);
119 *pprev = next;
121 set_page_private(next, (unsigned long) pprev);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/frv/mm/
H A Dpgalloc.c97 struct page *next, **pprev, *page = virt_to_page(pgd); local
99 pprev = (struct page **) page_private(page);
100 *pprev = next;
102 set_page_private(next, (unsigned long) pprev);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/frv/mm/
H A Dpgalloc.c97 struct page *next, **pprev, *page = virt_to_page(pgd); local
99 pprev = (struct page **) page_private(page);
100 *pprev = next;
102 set_page_private(next, (unsigned long) pprev);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/mn10300/mm/
H A Dpgtable.c116 struct page *next, **pprev, *page = virt_to_page(pgd); local
118 pprev = (struct page **) page_private(page);
119 *pprev = next;
121 set_page_private(next, (unsigned long) pprev);

Completed in 299 milliseconds

123