Searched refs:rounded_up (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/kernel/lib/heap/cmpctmalloc/
H A Dcmpctmalloc.c910 size_t rounded_up; local
911 int start_bucket = size_to_index_allocating(size, &rounded_up);
913 rounded_up += sizeof(header_t);
921 MAX(HEAP_GROW_SIZE, rounded_up)));
925 if (growby <= rounded_up) {
929 growby = MAX(growby >> 1, rounded_up);
934 size_t left_over = head->header.size - rounded_up;
943 void* free = (char*)head + rounded_up;
956 rounded_up - size - sizeof(header_t));

Completed in 73 milliseconds