Lines Matching defs:x
13 #define MPP_ABS(x) ((x) < (0) ? -(x) : (x)) argument
31 #define MPP_ALIGN(x, a) (((x)+(a)-1)&~((a)-1)) argument
32 #define MPP_ALIGN_DOWN(x, a) ((x)&~((a)-1)) argument
33 #define MPP_ALIGN_GEN(x, a) (((x)+(a)-1)/(a)*(a)) argument
38 #define MPP_RB16(x) ((((const RK_U8*)(x))[0] << 8) | ((const RK_U8*)(x))[1]) argument
43 #define MPP_RL16(x) ((((const RK_U8*)(x))[1] << 8) | \ argument
49 #define MPP_RB32(x) ((((const RK_U8*)(x))[0] << 24) | \ argument
59 #define MPP_RL32(x) ((((const RK_U8*)(x))[3] << 24) | \ argument
69 #define MPP_RB64(x) (((RK_U64)((const RK_U8*)(x))[0] << 56) | \ argument
87 #define MPP_RL64(x) (((RK_U64)((const RK_U8*)(x))[7] << 56) | \ argument
105 #define MPP_RB24(x) ((((const RK_U8*)(x))[0] << 16) | \ argument
113 #define MPP_RL24(x) ((((const RK_U8*)(x))[2] << 16) | \ argument
149 #define mkdir(x) mkdir(x, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) argument
190 static __inline RK_S32 mpp_ceil_log2(RK_S32 x) in mpp_ceil_log2()