Searched refs:UNW_ALIGN (Results 1 – 3 of 3) sorted by relevance
51 size = UNW_ALIGN(size, MAX_ALIGN); in sos_alloc()67 unsigned align = UNW_ALIGN((uintptr_t) &sos_memory[0], MAX_ALIGN) in sos_alloc()114 size = UNW_ALIGN(pool->obj_size, pg_size); in expand()137 obj_size = UNW_ALIGN(obj_size, MAX_ALIGN); in mempool_init()148 pool->chunk_size = UNW_ALIGN(2*reserve*obj_size, pg_size); in mempool_init()
69 #define NOTE_DATA(_hdr) STRUCT_MEMBER_P((_hdr), sizeof (Elf32_Nhdr) + UNW_ALIGN((_hdr)->n_namesz, 4…70 #define NOTE_SIZE(_hdr) (sizeof (Elf32_Nhdr) + UNW_ALIGN((_hdr)->n_namesz, 4) + (_hdr)->n_descsz)
414 #define UNW_ALIGN(x,a) (((x)+(a)-1UL)&~((a)-1UL)) macro