Searched refs:UNW_ALIGN (Results 1 – 3 of 3) sorted by relevance
56 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()
110 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()
409 #define UNW_ALIGN(x,a) (((x)+(a)-1UL)&~((a)-1UL)) macro