Lines Matching defs:t
109 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v argument
110 #define DECLARE_ASM_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v argument
111 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v argument
113 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (FFMIN(n, 16)))) v argument
114 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v argument
115 …#define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (FFMIN(n, 16)))… argument
117 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v argument
118 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (n))) v argument
119 #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (n))) v argument
121 #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v argument
122 #define DECLARE_ASM_ALIGNED(n,t,v) __declspec(align(n)) t v argument
123 #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v argument
125 #define DECLARE_ALIGNED(n,t,v) t v argument
126 #define DECLARE_ASM_ALIGNED(n,t,v) t v argument
127 #define DECLARE_ASM_CONST(n,t,v) static const t v argument
677 size_t t = a * b; in av_size_mult() local