Home
last modified time | relevance | path

Searched refs:__LTP_ALIGN_MASK (Results 1 – 1 of 1) sorted by relevance

/external/ltp/include/
Dtst_common.h35 #define LTP_ALIGN(x, a) __LTP_ALIGN_MASK(x, (typeof(x))(a) - 1)
36 #define __LTP_ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) macro