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