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

/fuchsia/zircon/kernel/lib/heap/cmpctmalloc/
H A Dcmpctmalloc.c74 // An alloction of less than HEAP_LARGE_ALLOC_BYTES, which can fit in a free
78 // An alloction of more than HEAP_LARGE_ALLOC_BYTES. This is no longer allowed.
133 #define HEAP_LARGE_ALLOC_BYTES (1u << HEAP_ALLOC_VIRTUAL_BITS) macro
138 static_assert(HEAP_GROW_SIZE <= HEAP_LARGE_ALLOC_BYTES, "");
906 if (size > (HEAP_LARGE_ALLOC_BYTES - sizeof(header_t))) {
919 size_t growby = MIN(HEAP_LARGE_ALLOC_BYTES,

Completed in 80 milliseconds