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

/fuchsia/zircon/kernel/lib/heap/cmpctmalloc/
H A Dcmpctmalloc.c39 // header_t left_sentinel -- Marked as allocated, |left| pointer NULL.
388 // cached_os_alloc. |left_sentinel| is the start of the OS allocation, and
391 static void possibly_free_to_os(header_t *left_sentinel, size_t total_size) { argument
393 LTRACEF("Keeping 0x%zx-byte OS alloc @%p\n", total_size, left_sentinel);
394 theheap.cached_os_alloc = left_sentinel;
399 total_size, left_sentinel);
400 free_to_os(left_sentinel, total_size);
1058 header_t* left_sentinel = (header_t*)new_area; local
1059 create_allocation_header(left_sentinel, 0, sizeof(header_t), NULL);
1062 header_t* new_header = left_sentinel
[all...]

Completed in 37 milliseconds