Searched refs:heap_block (Results 1 – 2 of 2) sorted by relevance
39 struct heap_block { struct40 struct heap_block *next; argument41 struct heap_block *prev; argument67 #define BLOCK_HEAD (sizeof(struct heap_block) + OVERHEAD)68 #define CHUNK_BLOCK_OFFSET (sizeof(struct heap_block))69 #define CHUNK_TO_BLOCK(c) (struct heap_block *)((char *)(c) - CHUNK_BLOCK_OFFSET)
23 static struct heap_block block_list;425 struct heap_block *block = NULL; in check_heap_integrity()474 struct heap_block *block = CHUNK_TO_BLOCK(self); in insert_block_list()475 struct heap_block *cur = NULL; in insert_block_list()