Home
last modified time | relevance | path

Searched refs:footer_align (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/
H A Dmemory_resource.cpp162 const size_t footer_align = alignof(__chunk_footer); in __do_allocate() local
164 if (align < footer_align) in __do_allocate()
165 align = footer_align; in __do_allocate()
167 size_t aligned_capacity = roundup(bytes, footer_align) + footer_size; in __do_allocate()
243 const size_t footer_align = alignof(__chunk_footer); in __allocate_in_new_chunk() local
245 size_t aligned_capacity = roundup(chunk_size, footer_align) + footer_size; in __allocate_in_new_chunk()
455 const size_t footer_align = alignof(__chunk_footer); in do_allocate() local
463 return roundup(newsize, footer_align) + footer_size; in do_allocate()
475 if (align < footer_align) in do_allocate()
476 align = footer_align; in do_allocate()
[all …]