Searched defs:IS_ALIGNED (Results 1 – 7 of 7) sorted by relevance
13 #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) macro
129 #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) macro
168 #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) macro
74 #define IS_ALIGNED(a, b) (!(((UINTPTR)(a)) & (((UINTPTR)(b)) - 1))) macro
50 #define IS_ALIGNED(a, b) (!(((UINTPTR)(a)) & (((UINTPTR)(b))… macro
61 #define IS_ALIGNED(value, align) ((((UINTPTR)(value)) & ((UINTPTR)((align) - 1))) == 0) macro
39 #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) macro