Home
last modified time | relevance | path

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

/external/toybox/toys/posix/
Dcut.c48 struct slist *current, *head_ref, *temp1_node; in add_to_list() local
51 temp1_node = xzalloc(sizeof(struct slist)); in add_to_list()
52 temp1_node->start = start; in add_to_list()
53 temp1_node->end = end; in add_to_list()
57 temp1_node->next = head_ref; in add_to_list()
58 head_ref = temp1_node; in add_to_list()
62 while (current->next && current->next->start < temp1_node->start) in add_to_list()
64 temp1_node->next = current->next; in add_to_list()
65 current->next = temp1_node; in add_to_list()