Searched refs:__LTP_ALIGN_MASK (Results 1 – 1 of 1) sorted by relevance
23 #define LTP_ALIGN(x, a) __LTP_ALIGN_MASK(x, (typeof(x))(a) - 1)24 #define __LTP_ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) macro