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