Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/rockit/tgi/sdk/include/
H A Drt_common.h45 #define RT_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) macro
46 #define RT_ALIGN_ODD(x, a) (RT_ALIGN(x, a) | a)
47 #define RT_ALIGN_16(x) RT_ALIGN(x, 16)
48 #define RT_ALIGN_64(x) RT_ALIGN(x, 64)
49 #define RT_ALIGN_256(x) RT_ALIGN(x, 256)
50 #define RT_ALIGN_256_ODD(x) (RT_ALIGN(x, 256) | 256)