Home
last modified time | relevance | path

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

/DragonOS-0.1.5/user/libs/libc/src/
Dmalloc.c43 static malloc_mem_chunk_t *malloc_free_list = NULL; variable
72 if (malloc_free_list == NULL) in malloc_query_free_chunk_bf()
76 malloc_mem_chunk_t *ptr = malloc_free_list; in malloc_query_free_chunk_bf()
109 if (malloc_free_list == NULL) in malloc_query_free_chunk_ff()
111 malloc_mem_chunk_t *ptr = malloc_free_list; in malloc_query_free_chunk_ff()
176 if (malloc_free_list == NULL) in malloc_merge_free_chunk()
178 malloc_mem_chunk_t *ptr = malloc_free_list->next; in malloc_merge_free_chunk()
206 if (malloc_free_list == NULL) // 空闲链表为空 in malloc_insert_free_list()
208 malloc_free_list = ck; in malloc_insert_free_list()
216 malloc_mem_chunk_t *ptr = malloc_free_list; in malloc_insert_free_list()
[all …]