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

/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Drculist.h90 #define hlist_pprev_rcu(node) (*((struct hlist_node **)((node)->pprev)))
96 n->pprev = &prev->next;
99 n->next->pprev = &n->next;
113 struct hlist_node **pprev = n->pprev; local
115 WRITE_ONCE(*pprev, next);
117 next->pprev = pprev;
126 n->pprev = &h->first;
129 first->pprev
[all...]
H A Dlist.h333 struct hlist_node *next, **pprev; member in struct:hlist_node
342 (node)->pprev = NULL; \
349 return !h->pprev;
363 WRITE_ONCE(*(n->pprev), n->next);
365 n->next->pprev = n->pprev;
384 h->first->pprev = &n->next;
386 n->pprev = &h->first;
393 n->pprev = next->pprev;
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_linux_list.h188 struct hlist_node *next, **pprev; member in struct:hlist_node
197 (node)->pprev = NULL; \
204 return !h->pprev;
219 n->next->pprev = n->pprev;
220 *n->pprev = n->next;
239 h->first->pprev = &n->next;
241 n->pprev = &h->first;
248 n->pprev = next->pprev;
[all...]
/freebsd-11-stable/sys/netpfil/ipfw/
H A Ddn_sched_qfq.c715 struct qfq_class *cl, struct qfq_class **pprev)
725 if (!pprev) {
726 pprev = &grp->slots[i];
727 while (*pprev && *pprev != cl)
728 pprev = &(*pprev)->next;
732 *pprev = cl->next;
747 struct qfq_class **pprev)
755 qfq_slot_remove(q, grp, cl, pprev);
[all...]
/freebsd-11-stable/sys/dev/hptnr/
H A Dldm.h170 struct timer_call ** pprev; member in struct:timer_call
174 #define ldm_init_timer(timer) do { (timer)->next=0; (timer)->pprev=0; } while (0)
178 HPT_ASSERT((timer)->next==0 && (timer)->pprev==0);\
/freebsd-11-stable/sys/dev/hptrr/
H A Dldm.h169 struct timer_call ** pprev; member in struct:timer_call
173 #define ldm_init_timer(timer) do { (timer)->next=0; (timer)->pprev=0; } while (0)
177 HPT_ASSERT((timer)->next==0 && (timer)->pprev==0);\
/freebsd-11-stable/sys/dev/hpt27xx/
H A Dldm.h170 struct timer_call ** pprev; member in struct:timer_call
174 #define ldm_init_timer(timer) do { (timer)->next=0; (timer)->pprev=0; } while (0)
178 HPT_ASSERT((timer)->next==0 && (timer)->pprev==0);\
/freebsd-11-stable/contrib/gcc/
H A Ddf-problems.c3224 rtx *pprev = &REG_NOTES (insn);
3225 rtx link = *pprev;
3245 *pprev = link = next;
3250 pprev = &XEXP (link, 1);
3251 link = *pprev;
3217 rtx *pprev = &REG_NOTES (insn); local
H A Dflow.c4566 rtx *pprev = &REG_NOTES (insn);
4567 rtx link = *pprev;
4600 *pprev = link = next;
4606 pprev = &XEXP (link, 1);
4607 link = *pprev;
4553 rtx *pprev = &REG_NOTES (insn); local
/freebsd-11-stable/contrib/gdb/gdb/
H A Dsymfile.c2380 struct partial_symtab *ps, *pprev = NULL;
2388 pprev = ps;
2397 pprev->next = ps->next;
2373 struct partial_symtab *ps, *pprev = NULL; local

Completed in 270 milliseconds