Searched defs:IS_ALIGNED (Results 1 – 8 of 8) sorted by relevance
92 #define IS_ALIGNED(p, a) (0==(reinterpret_cast<uintptr_t>(p) & ((a)-1))) macro
17 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1))) macro
143 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1))) macro
23 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1))) macro
96 #define IS_ALIGNED(n, align) ((((unsigned long) n) & \ macro
271 #define IS_ALIGNED(p) (((uintptr_t)(p) & (sizeof(*(p)) - 1)) == 0) macro