Searched refs:new_mmb (Results 1 – 1 of 1) sorted by relevance
135 struct malloc_mmb *mmb, *prev_mmb, *new_mmb; in __malloc_from_heap() local157 new_mmb = malloc_from_heap (sizeof *new_mmb, &__malloc_mmb_heap, &__malloc_mmb_heap_lock); in __malloc_from_heap()165 new_mmb->next = mmb; in __malloc_from_heap()166 new_mmb->mem = block; in __malloc_from_heap()167 new_mmb->size = block_size; in __malloc_from_heap()170 prev_mmb->next = new_mmb; in __malloc_from_heap()172 __malloc_mmapped_blocks = new_mmb; in __malloc_from_heap()175 (unsigned)new_mmb, in __malloc_from_heap()176 (unsigned)new_mmb->mem, block_size); in __malloc_from_heap()
Completed in 2 milliseconds