Home
last modified time | relevance | path

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

/third_party/libunwind/src/mi/
Dmempool.c56 size = UNW_ALIGN(size, MAX_ALIGN); in sos_alloc()
103 size = UNW_ALIGN(pool->obj_size, pg_size); in expand()
126 obj_size = UNW_ALIGN(obj_size, MAX_ALIGN); in mempool_init()
137 pool->chunk_size = UNW_ALIGN(2*reserve*obj_size, pg_size); in mempool_init()
/third_party/libunwind/src/coredump/
D_UCD_corefile_elf.c110 unsigned name_size = UNW_ALIGN(note->n_namesz, 4); in _UCD_elf_visit_notes()
111 unsigned desc_size = UNW_ALIGN(note->n_descsz, 4); in _UCD_elf_visit_notes()
/third_party/libunwind/include/
Dlibunwind_i.h409 #define UNW_ALIGN(x,a) (((x)+(a)-1UL)&~((a)-1UL)) macro