Home | History | Annotate | Download | only in base

Lines Matching refs:roundup

189                           // pagesize, roundup, min_size
194 size_t roundup; // lowest power of 2 >= max(16,sizeof (AllocList))
267 arena->roundup = 16;
268 while (arena->roundup < sizeof (arena->freelist.header)) {
269 arena->roundup += arena->roundup;
271 // Don't allocate blocks less than twice the roundup size to avoid tiny
273 arena->min_size = 2 * arena->roundup;
352 static intptr_t RoundUp(intptr_t addr, intptr_t align) {
441 size_t req_rnd = RoundUp(request + sizeof (s->header), arena->roundup);
459 size_t new_pages_size = RoundUp(req_rnd, arena->pagesize * 16);