Searched refs:_qe (Results 1 – 1 of 1) sorted by relevance
125 #define bfa_q_next(_qe) (((struct list_head *) (_qe))->next) argument126 #define bfa_q_prev(_qe) (((struct list_head *) (_qe))->prev) argument131 #define bfa_q_qe_init(_qe) { \ argument132 bfa_q_next(_qe) = (struct list_head *) NULL; \133 bfa_q_prev(_qe) = (struct list_head *) NULL; \139 #define bfa_q_deq(_q, _qe) do { \ argument141 (*((struct list_head **) (_qe))) = bfa_q_next(_q); \142 bfa_q_prev(bfa_q_next(*((struct list_head **) _qe))) = \144 bfa_q_next(_q) = bfa_q_next(*((struct list_head **) _qe));\146 *((struct list_head **) (_qe)) = (struct list_head *) NULL;\[all …]