Lines Matching refs:first
54 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument
56 assert(first->next == NULL); in chain_property()
58 first->next = list; in chain_property()
59 return first; in chain_property()
62 struct property *reverse_properties(struct property *first) in reverse_properties() argument
64 struct property *p = first; in reverse_properties()
170 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
172 assert(first->next_sibling == NULL); in chain_node()
174 first->next_sibling = list; in chain_node()
175 return first; in chain_node()
217 struct reserve_info *chain_reserve_entry(struct reserve_info *first, in chain_reserve_entry() argument
220 assert(first->next == NULL); in chain_reserve_entry()
222 first->next = list; in chain_reserve_entry()
223 return first; in chain_reserve_entry()