Lines Matching defs:new
29 #define new newHack
70 * Insert a new entry between two known consecutive entries.
75 static __inline__ void __list_add(struct list_head *new,
79 next->prev = new;
80 new->next = next;
81 new->prev = prev;
82 prev->next = new;
86 * list_add - add a new entry
87 * @new: new entry to be added
90 * Insert a new entry after the specified head.
93 static __inline__ void list_add(struct list_head *new, struct list_head *head)
95 __list_add(new, head, head->next);
99 * list_add_tail - add a new entry
100 * @new: new entry to be added
103 * Insert a new entry before the specified head.
106 static __inline__ void list_add_tail(struct list_head *new,
109 __list_add(new, head->prev, head);
158 * @list: the new list to add.
266 #undef new