Searched defs:IS_ALIGNED (Results 1 – 2 of 2) sorted by relevance
69 #define IS_ALIGNED(value, alignSize) ((((UINT32)(value)) & ((UINT32)((alignSize) - 1))) == 0) macro
86 #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) macro