Searched defs:IS_ALIGNED (Results 1 – 6 of 6) sorted by relevance
82 #define IS_ALIGNED(x, a) (((x) & ((__typeof(x))(a) - 1)) == 0) macro
185 #define IS_ALIGNED(n,align) (!((uint32_t)(n) & (align - 1))) macro
127 #define IS_ALIGNED(x, a) (((x) & ((__typeof(x))(a) - 1)) == 0) macro
919 #define IS_ALIGNED(Value, Alignment) (((Value) & ((Alignment) - 1U)) == 0U) macro
244 #define IS_ALIGNED(x, y) (((x) & ((y) - 1)) == 0) macro
1127 #define IS_ALIGNED(x,a) ((x % a) == 0) macro