Home
last modified time | relevance | path

Searched refs:__ALIGN_MASK (Results 1 – 4 of 4) sorted by relevance

/external/perf_data_converter/src/quipper/kernel/
Dperf_internals.h274 #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/
Dmksunxiboot.c47 #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/
Dkernel.h40 #define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1)
42 #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask)) macro
/external/iproute2/tc/
Dm_xt_old.c44 #define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1)
45 #define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask)) macro