Lines Matching defs:t
108 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v argument
109 #define DECLARE_ASM_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v argument
110 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v argument
112 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (FFMIN(n, 16)))) v argument
113 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v argument
114 …#define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (FFMIN(n, 16)))… argument
116 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v argument
117 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (n))) v argument
118 #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (n))) v argument
120 #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v argument
121 #define DECLARE_ASM_ALIGNED(n,t,v) __declspec(align(n)) t v argument
122 #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v argument
124 #define DECLARE_ALIGNED(n,t,v) t v argument
125 #define DECLARE_ASM_ALIGNED(n,t,v) t v argument
126 #define DECLARE_ASM_CONST(n,t,v) static const t v argument