Searched refs:prev_free (Results 1 – 5 of 5) sorted by relevance
78 heap->prev_free = block; in mmInit()84 block->prev_free = heap; in mmInit()116 newblock->prev_free = p; in SliceBlock()117 p->next_free->prev_free = newblock; in SliceBlock()141 newblock->prev_free = p; in SliceBlock()142 p->next_free->prev_free = newblock; in SliceBlock()153 p->next_free->prev_free = p->prev_free; in SliceBlock()154 p->prev_free->next_free = p->next_free; in SliceBlock()157 p->prev_free = 0; in SliceBlock()210 q->next_free->prev_free = q->prev_free; in Join2Blocks()[all …]
36 struct mem_block *next_free, *prev_free; member
90 heap->prev_free = block; in u_mmInit()96 block->prev_free = heap; in u_mmInit()129 newblock->prev_free = p; in SliceBlock()130 p->next_free->prev_free = newblock; in SliceBlock()153 newblock->prev_free = p; in SliceBlock()154 p->next_free->prev_free = newblock; in SliceBlock()165 p->next_free->prev_free = p->prev_free; in SliceBlock()166 p->prev_free->next_free = p->next_free; in SliceBlock()169 p->prev_free = 0; in SliceBlock()246 q->next_free->prev_free = q->prev_free; in Join2Blocks()[all …]
39 struct mem_block *next_free, *prev_free; member
52 memory_header *prev_free; member96 (size_t) hdr->prev_free, (size_t) hdr->next_free ); in debug_header()162 if( hdr->prev_free != NULL && hdr->prev_free == hdr->next_free ) in verify_header()286 if( cur->prev_free != NULL ) in buffer_alloc_calloc()287 cur->prev_free->next_free = cur->next_free; in buffer_alloc_calloc()292 cur->next_free->prev_free = cur->prev_free; in buffer_alloc_calloc()294 cur->prev_free = NULL; in buffer_alloc_calloc()336 new->prev_free = cur->prev_free; in buffer_alloc_calloc()338 if( new->prev_free != NULL ) in buffer_alloc_calloc()339 new->prev_free->next_free = new; in buffer_alloc_calloc()[all …]