Searched refs:_qe (Results 1 – 2 of 2) sorted by relevance
51 #define bfa_q_next(_qe) (((struct list_head *) (_qe))->next) argument52 #define bfa_q_prev(_qe) (((struct list_head *) (_qe))->prev) argument57 #define bfa_q_qe_init(_qe) { \ argument58 bfa_q_next(_qe) = (struct list_head *) NULL; \59 bfa_q_prev(_qe) = (struct list_head *) NULL; \65 #define bfa_q_deq(_q, _qe) { \ argument67 (*((struct list_head **) (_qe))) = bfa_q_next(_q); \68 bfa_q_prev(bfa_q_next(*((struct list_head **) _qe))) = \70 bfa_q_next(_q) = bfa_q_next(*((struct list_head **) _qe)); \71 bfa_q_qe_init(*((struct list_head **) _qe)); \[all …]
157 #define bfa_q_next(_qe) (((struct list_head *) (_qe))->next) argument158 #define bfa_q_prev(_qe) (((struct list_head *) (_qe))->prev) argument163 #define bfa_q_qe_init(_qe) { \ argument164 bfa_q_next(_qe) = (struct list_head *) NULL; \165 bfa_q_prev(_qe) = (struct list_head *) NULL; \171 #define bfa_q_deq(_q, _qe) do { \ argument173 (*((struct list_head **) (_qe))) = bfa_q_next(_q); \174 bfa_q_prev(bfa_q_next(*((struct list_head **) _qe))) = \176 bfa_q_next(_q) = bfa_q_next(*((struct list_head **) _qe));\178 *((struct list_head **) (_qe)) = (struct list_head *) NULL;\[all …]