Lines Matching refs:first
77 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument
79 assert(first->next == NULL); in chain_property()
81 first->next = list; in chain_property()
82 return first; in chain_property()
85 struct property *reverse_properties(struct property *first) in reverse_properties() argument
87 struct property *p = first; in reverse_properties()
262 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
264 assert(first->next_sibling == NULL); in chain_node()
266 first->next_sibling = list; in chain_node()
267 return first; in chain_node()
371 struct reserve_info *chain_reserve_entry(struct reserve_info *first, in chain_reserve_entry() argument
374 assert(first->next == NULL); in chain_reserve_entry()
376 first->next = list; in chain_reserve_entry()
377 return first; in chain_reserve_entry()