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()
219 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
221 assert(first->next_sibling == NULL); in chain_node()
223 first->next_sibling = list; in chain_node()
224 return first; in chain_node()
311 struct reserve_info *chain_reserve_entry(struct reserve_info *first, in chain_reserve_entry() argument
314 assert(first->next == NULL); in chain_reserve_entry()
316 first->next = list; in chain_reserve_entry()
317 return first; in chain_reserve_entry()