Searched defs:IS_ALIGNED (Results 1 – 7 of 7) sorted by relevance
58 #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
102 #define IS_ALIGNED(p, a) (0==(reinterpret_cast<uintptr_t>(p) & ((a)-1))) macro
23 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1))) macro
95 #define IS_ALIGNED(n, align) ((((unsigned long) n) & \ macro
266 #define IS_ALIGNED(p) (((uintptr_t)(p) & (sizeof(*(p)) - 1)) == 0) macro
108 IS_ALIGNED = 0x4, // Memory-aligned (where appropriate) enumerator