Home | History | Annotate | Download | only in Sema

Lines Matching refs:vector_size

4 typedef int __attribute__((mode(byte))) __attribute__((vector_size(256))) vec_t1;
5 typedef int __attribute__((mode(QI))) __attribute__((vector_size(256))) vec_t2;
6 typedef int __attribute__((mode(SI))) __attribute__((vector_size(256))) vec_t3;
7 typedef int __attribute__((mode(DI))) __attribute__((vector_size(256)))vec_t4;
8 typedef float __attribute__((mode(SF))) __attribute__((vector_size(256))) vec_t5;
9 typedef float __attribute__((mode(DF))) __attribute__((vector_size(256))) vec_t6;
10 typedef float __attribute__((mode(XF))) __attribute__((vector_size(256))) vec_t7;
12 typedef int v8qi __attribute__ ((mode(QI))) __attribute__ ((vector_size(8)));
14 // expected-warning@-1{{specifying vector types with the 'mode' attribute is deprecated; use the 'vector_size' attribute instead}}
17 // expected-warning@-1{{specifying vector types with the 'mode' attribute is deprecated; use the 'vector_size' attribute instead}}
18 typedef float v4sf __attribute__((mode(SF))) __attribute__ ((vector_size(16)));
21 typedef float __attribute__((mode(QC))) __attribute__((vector_size(256))) vec_t8;
24 typedef _Complex float __attribute__((mode(HC))) __attribute__((vector_size(256))) vec_t9;
27 typedef int __attribute__((mode(SC))) __attribute__((vector_size(256))) vec_t10;
30 typedef float __attribute__((mode(DC))) __attribute__((vector_size(256))) vec_t11;
33 typedef _Complex float __attribute__((mode(XC))) __attribute__((vector_size(256))) vec_t12;