Lines Matching refs:Bottom
80 *Bottom, /* the last free chunk in the arena */ variable
264 if (Bottom && size <= SIZE(Bottom)) { in _malloc_unlocked()
265 sp = Bottom; in _malloc_unlocked()
285 Bottom = NULL; in _malloc_unlocked()
371 if (np != Bottom) in realloc()
374 Bottom = NULL; in realloc()
381 Bottom = tp; in realloc()
383 tp = Bottom; in realloc()
384 Bottom = NULL; in realloc()
402 Bottom = NULL; in realloc()
512 if (np != Bottom) in realfree()
521 ASSERT(np != Bottom); in realfree()
535 Bottom = tp; in realfree()
607 tp = Bottom; in _morecore()
689 if (Bottom && Bottom != tp) { in _morecore()
690 SETBIT0(SIZE(Bottom)); in _morecore()
691 realfree(DATA(Bottom)); in _morecore()