Home
last modified time | relevance | path

Searched refs:temp1_node (Results 1 – 1 of 1) sorted by relevance

/external/toybox/toys/posix/
Dcut.c46 struct slist *current, *head_ref, *temp1_node; in add_to_list() local
49 temp1_node = xzalloc(sizeof(struct slist)); in add_to_list()
50 temp1_node->start = start; in add_to_list()
51 temp1_node->end = end; in add_to_list()
55 temp1_node->next = head_ref; in add_to_list()
56 head_ref = temp1_node; in add_to_list()
60 while (current->next && current->next->start < temp1_node->start) in add_to_list()
62 temp1_node->next = current->next; in add_to_list()
63 current->next = temp1_node; in add_to_list()