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