Lines Matching refs:sym_quehead

33 typedef struct sym_quehead {  struct
34 struct sym_quehead *flink; /* Forward pointer */ argument
35 struct sym_quehead *blink; /* Backward pointer */ argument
42 static inline struct sym_quehead *sym_que_first(struct sym_quehead *head) in sym_que_first()
47 static inline struct sym_quehead *sym_que_last(struct sym_quehead *head) in sym_que_last()
52 static inline void __sym_que_add(struct sym_quehead * new, in __sym_que_add()
53 struct sym_quehead * blink, in __sym_que_add()
54 struct sym_quehead * flink) in __sym_que_add()
62 static inline void __sym_que_del(struct sym_quehead * blink, in __sym_que_del()
63 struct sym_quehead * flink) in __sym_que_del()
69 static inline int sym_que_empty(struct sym_quehead *head) in sym_que_empty()
74 static inline void sym_que_splice(struct sym_quehead *list, in sym_que_splice()
75 struct sym_quehead *head) in sym_que_splice()
77 struct sym_quehead *first = list->flink; in sym_que_splice()
80 struct sym_quehead *last = list->blink; in sym_que_splice()
81 struct sym_quehead *at = head->flink; in sym_que_splice()
91 static inline void sym_que_move(struct sym_quehead *orig, in sym_que_move()
92 struct sym_quehead *dest) in sym_que_move()
94 struct sym_quehead *first, *last; in sym_que_move()
119 static inline struct sym_quehead *sym_remque_head(struct sym_quehead *head) in sym_remque_head()
121 struct sym_quehead *elem = head->flink; in sym_remque_head()
132 static inline struct sym_quehead *sym_remque_tail(struct sym_quehead *head) in sym_remque_tail()
134 struct sym_quehead *elem = head->blink; in sym_remque_tail()
152 #define sym_qptr(p) ((struct sym_quehead *) (p))