Lines Matching refs:aligned
35 * Declare a variable that is aligned in memory.
53 * Declare an aligned variable appropriate for use in inline assembly code.
66 * Declare a static constant aligned variable appropriate for use in inline
79 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
80 #define DECLARE_ASM_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
81 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
83 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (FFMIN(n, 16)))) v
84 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v
85 #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v
87 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
88 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (n))) v
89 #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (n))) v