Searched defs:IsAligned (Results 1 – 3 of 3) sorted by relevance
180 inline bool IsAligned(T value, U alignment) { in IsAligned() function
61 static inline bool IsAligned(uintptr_t a, uintptr_t alignment) { in IsAligned() function
622 #define IsAligned( X, Y ) ( ( ( X ) & ( ( Y ) - 1 ) ) == 0 ) macro