Lines Matching refs:arenaend
130 static struct header *arenaend; /* ptr to block marking high end of arena */ variable
319 lastblk = arenaend = &(arena[1]); in malloc_unlocked()
487 if (next >= arenaend) in malloc_unlocked()
514 (struct header *)((char *)arenaend + HEADSZ)) { in malloc_unlocked()
542 arenaend->nextblk = SETBUSY(newblk); in malloc_unlocked()
544 arenaend = newend; in malloc_unlocked()
561 (struct header *)((char *)arenaend+nget); in malloc_unlocked()
563 arenaend->nextblk = newend; in malloc_unlocked()
564 lastblk = blk = arenaend; in malloc_unlocked()
565 arenaend = newend; in malloc_unlocked()
574 ((char *)arenaend - (char *)lastblk); in malloc_unlocked()
582 ((char *)arenaend + nget); in malloc_unlocked()
583 arenaend = lastblk->nextblk = newend; in malloc_unlocked()
665 assert((struct header *)lblk < arenaend); in free_unlocked()
707 if (next == arenaend) lastblk = blk; in free_unlocked()
796 if (next >= arenaend) lastblk = blk; in realloc_unlocked()
983 inf.arena = (char *)arenaend - (char *)blk; in mallinfo()