Home | History | Annotate | Download | only in vpx_ports

Lines Matching refs:typ

18 #define DECLARE_ALIGNED(n,typ,val)  typ val __attribute__ ((aligned (n)))
20 #define DECLARE_ALIGNED(n,typ,val) __declspec(align(n)) typ val
23 #define DECLARE_ALIGNED(n,typ,val) typ val
33 #define DECLARE_ALIGNED_ARRAY(a,typ,val,n)\
34 typ val##_[(n)+(a)/sizeof(typ)+1];\
35 typ *val = (typ*)((((intptr_t)val##_)+(a)-1)&((intptr_t)-(a)))