Lines Matching refs:head
191 * Insert an element at the head of a DLL. Assumes that head, tail and
194 * @param head pointer to the head of the DLL (struct ? *)
198 #define DLL_insert(head,tail,element) do { \
199 (element)->next = (head); \
204 (head)->prev = element; \
205 (head) = (element); } while (0)
210 * that head, tail and element are structs
213 * @param head pointer to the head of the DLL (struct ? *)
217 #define DLL_remove(head,tail,element) do { \
219 (head) = (element)->next; \