Searched refs:__ALIGN_MASK (Results 1 – 4 of 4) sorted by relevance
/external/perf_data_converter/src/quipper/kernel/ |
D | perf_internals.h | 274 #define ALIGN(x, a) __ALIGN_MASK(x, (decltype(x))(a)-1) 275 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) macro 288 #undef __ALIGN_MASK
|
/external/u-boot/tools/ |
D | mksunxiboot.c | 47 #define ALIGN(x, a) __ALIGN_MASK((x), (typeof(x))(a)-1) 48 #define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask)) macro
|
/external/u-boot/include/linux/ |
D | kernel.h | 40 #define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1) 42 #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask)) macro
|
/external/iproute2/tc/ |
D | m_xt_old.c | 44 #define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1) 45 #define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask)) macro
|