Lines Matching refs:sym_quehead
143 typedef struct sym_quehead { struct
144 struct sym_quehead *flink; /* Forward pointer */ argument
145 struct sym_quehead *blink; /* Backward pointer */ argument
152 static __inline void __sym_que_add(struct sym_quehead * new, in __sym_que_add()
153 struct sym_quehead * blink, in __sym_que_add()
154 struct sym_quehead * flink) in __sym_que_add()
162 static __inline void __sym_que_del(struct sym_quehead * blink, in __sym_que_del()
163 struct sym_quehead * flink) in __sym_que_del()
169 static __inline int sym_que_empty(struct sym_quehead *head) in sym_que_empty()
174 static __inline void sym_que_splice(struct sym_quehead *list, in sym_que_splice()
175 struct sym_quehead *head) in sym_que_splice()
177 struct sym_quehead *first = list->flink; in sym_que_splice()
180 struct sym_quehead *last = list->blink; in sym_que_splice()
181 struct sym_quehead *at = head->flink; in sym_que_splice()
200 static __inline struct sym_quehead *sym_remque_head(struct sym_quehead *head) in sym_remque_head()
202 struct sym_quehead *elem = head->flink; in sym_remque_head()
222 #define sym_qptr(p) ((struct sym_quehead *) (p))