Lines Matching refs:first
65 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument
67 assert(first->next == NULL); in chain_property()
69 first->next = list; in chain_property()
70 return first; in chain_property()
73 struct property *reverse_properties(struct property *first) in reverse_properties() argument
75 struct property *p = first; in reverse_properties()
258 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
260 assert(first->next_sibling == NULL); in chain_node()
262 first->next_sibling = list; in chain_node()
263 return first; in chain_node()
370 struct reserve_info *chain_reserve_entry(struct reserve_info *first, in chain_reserve_entry() argument
373 assert(first->next == NULL); in chain_reserve_entry()
375 first->next = list; in chain_reserve_entry()
376 return first; in chain_reserve_entry()