Home
last modified time | relevance | path

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

/freebsd/contrib/elftoolchain/size/
H A Dsize.c48 #define ELF_ALIGN(val,x) (((val)+(x)-1) & ~((x)-1)) macro
262 ELF_ALIGN((int32_t)namesz, 4) + offset)
266 ELF_ALIGN((int32_t)namesz, 8) + offset)
278 offset += ELF_ALIGN((int32_t)descsz, 4) + \
280 ELF_ALIGN((int32_t)namesz, 4); \
282 offset += ELF_ALIGN((int32_t)descsz, 8) + \
284 ELF_ALIGN((int32_t)namesz, 8); \
327 ELF_ALIGN(nhdr_l.n_namesz, 4) + in handle_core_note()
328 ELF_ALIGN(nhdr_l.n_descsz, 4) >= segment_end) { in handle_core_note()
343 ELF_ALIGN((int32_t) in handle_core_note()
[all …]
/freebsd/contrib/file/src/
H A Dreadelf.c55 #define ELF_ALIGN(a) ((((a) + align - 1) / align) * align) macro
1266 doff = ELF_ALIGN(offset + namesz); in donote()
1275 offset = ELF_ALIGN(doff + descsz); in donote()