Home | History | Annotate | Download | only in Parser

Lines Matching refs:vector

25 vector char v_c;
26 vector signed char v_sc;
27 vector unsigned char v_uc;
28 vector short v_s;
29 vector signed short v_ss;
30 vector unsigned short v_us;
31 vector short int v_si;
32 vector signed short int v_ssi;
33 vector unsigned short int v_usi;
34 vector int v_i;
35 vector signed int v_sint;
36 vector unsigned int v_ui;
37 vector float v_f;
38 vector bool char v_bc;
39 vector bool short v_bs;
40 vector bool int v_bi;
41 vector __pixel v_p;
42 vector pixel v__p;
43 vector int f__r();
44 void f_a(vector int a);
45 void f_a2(int b, vector int a);
47 vector int v = (vector int)(-1);
56 vector long v_l; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
57 vector signed long v_sl; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
58 vector unsigned long v_ul; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
59 vector long int v_li; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
60 vector signed long int v_sli; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
61 vector unsigned long int v_uli; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
63 vector long double v_ld; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'}}
67 vector double v_d2; // expected-error {{cannot use 'double' with '__vector'}}
69 vector long double v_ld4; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'}}
70 vector bool v_b; // expected-error {{C++ requires a type specifier for all declarations}}
71 vector bool float v_bf; // expected-error {{cannot use 'float' with '__vector bool'}}
72 vector bool double v_bd; // expected-error {{cannot use 'double' with '__vector bool'}}
73 vector bool pixel v_bp; // expected-error {{cannot use '__pixel' with '__vector bool'}}
74 vector bool signed char v_bsc; // expected-error {{cannot use 'signed' with '__vector bool'}}
75 vector bool unsigned int v_bsc2; // expected-error {{cannot use 'unsigned' with '__vector bool'}}
76 vector bool long v_bl; // expected-error {{cannot use 'long' with '__vector bool'}}
77 vector bool long long v_bll; // expected-error {{cannot use 'long long' with '__vector bool'}}
82 __vector int v_cast = (vector int)v;
83 __vector char vb_cast = (vector char)v;
115 vector int v;
116 vector int f__r();
117 void f__a(vector int a);
118 void f__a2(int b, vector int a);
123 vector char v1 = (vector char)((vector int)(1, 2, 3, 4));
124 vector char v2 = (vector char)((vector float)(1.0f, 2.0f, 3.0f, 4.0f));
125 vector char v3 = (vector char)((vector int)('a', 'b', 'c', 'd'));
126 vector int v4 = (vector int)(1, 2, 3, 4);
127 vector float v5 = (vector float)(1.0f, 2.0f, 3.0f, 4.0f);
128 vector char v6 = (vector char)((vector int)(1+2, -2, (int)(2.0 * 3), -(5-3)));
143 struct Vector
148 Vector Add(Vector lhs, Vector rhs)
150 Vector result;
170 } __attribute__((vecreturn)); // expected-error {{the vecreturn attribute can only be used on a class or structure with one member, which must be a vector}}