Lines Matching refs:malloc_free_list
43 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()
243 malloc_free_list = ck; in malloc_insert_free_list()
317 malloc_free_list = ck->next; in malloc()