Searched defs:IsAligned (Results 1 – 4 of 4) sorted by relevance
19 bool IsAligned(const void* ptr, size_t alignment) { in IsAligned() function
170 inline bool IsAligned(T value, U alignment) { in IsAligned() function
440 INLINE bool IsAligned(uptr a, uptr alignment) { in IsAligned() function
622 #define IsAligned( X, Y ) ( ( ( X ) & ( ( Y ) - 1 ) ) == 0 ) macro