Lines Matching refs:bfa_q_next
52 #define bfa_q_next(_qe) (((struct list_head *) (_qe))->next) macro
59 bfa_q_next(_qe) = (struct list_head *) NULL; \
68 (*((struct list_head **) (_qe))) = bfa_q_next(_q); \
69 bfa_q_prev(bfa_q_next(*((struct list_head **) _qe))) = \
71 bfa_q_next(_q) = bfa_q_next(*((struct list_head **) _qe)); \
84 bfa_q_next(bfa_q_prev(*((struct list_head **) _qe))) = \
97 if (!(bfa_q_next(_qe) == NULL) && (bfa_q_prev(_qe) == NULL)) \
100 (bfa_q_next(_qe) == NULL) && (bfa_q_prev(_qe) == NULL));\
101 bfa_q_next(_qe) = bfa_q_next(_q); \
103 bfa_q_prev(bfa_q_next(_q)) = (struct list_head *) (_qe); \
104 bfa_q_next(_q) = (struct list_head *) (_qe); \