Lines Matching refs:aligned
43 * encoding can be sped up significantly through the use of aligned memory.
58 * Helper macros for declaring aligned variables.
64 * Declare a variable that is aligned in memory.
82 * Declare an aligned variable appropriate for use in inline assembly code.
95 * Declare a static constant aligned variable appropriate for use in inline
108 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
109 #define DECLARE_ASM_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
110 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
112 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (FFMIN(n, 16)))) v
113 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v
114 #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v
116 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
117 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (n))) v
118 #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (n))) v
265 * correctly aligned. The returned pointer must be freed after even
289 * correctly aligned.
325 * correctly aligned. The returned pointer must be freed after even if
345 * correctly aligned. *ptr must be freed after even if nmemb is zero.