Lines Matching refs:cq_next_l
137 (list)->cq_next_l = (list); \
144 (elem)->cq_next_l = (list); \
145 (list)->cq_prev_l->cq_next_l = (elem); \
152 (fst)->cq_prev_l->cq_next_l = (snd)->cq_next_l; \
153 (snd)->cq_next_l->cq_prev_l = (fst)->cq_prev_l; \
154 (snd)->cq_prev_l->cq_next_l = (fst); \
162 (elem)->cq_next_l->cq_prev_e = (elem)->cq_prev_e; \
168 #define CIRCQ_LAST(elem,list) ((elem)->cq_next_l == (list))
169 #define CIRCQ_EMPTY(list) ((list)->cq_next_l == (list))