Home
last modified time | relevance | path

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

/malloc/
A Dtst-malloc_info.c52 struct list *head = NULL; in allocation_thread_function() local
58 new_head->next = head; in allocation_thread_function()
59 head = new_head; in allocation_thread_function()
68 while (head != NULL) in allocation_thread_function()
70 struct list *next_head = head->next; in allocation_thread_function()
71 free (head); in allocation_thread_function()
72 head = next_head; in allocation_thread_function()
A Dtst-dynarray-fail.c44 struct heap_filler *head = NULL; in fill_heap() local
59 new_head->next = head; in fill_heap()
60 head = new_head; in fill_heap()
62 return head; in fill_heap()
68 free_fill_heap (struct heap_filler *head) in free_fill_heap() argument
70 while (head != NULL) in free_fill_heap()
72 struct heap_filler *next = head->next; in free_fill_heap()
73 free (head); in free_fill_heap()
74 head = next; in free_fill_heap()
A Dtst-malloc-thread-fail.c193 struct list *head = NULL; in allocate_thread() local
200 e->next = head; in allocate_thread()
201 head = e; in allocate_thread()
216 while (head != NULL) in allocate_thread()
218 struct list *next = head->next; in allocate_thread()
219 free (head); in allocate_thread()
220 head = next; in allocate_thread()

Completed in 8 milliseconds