Lines Matching refs:vector
31 vector char v_c;
32 vector signed char v_sc;
33 vector unsigned char v_uc;
34 vector short v_s;
35 vector signed short v_ss;
36 vector unsigned short v_us;
37 vector short int v_si;
38 vector signed short int v_ssi;
39 vector unsigned short int v_usi;
40 vector int v_i;
41 vector signed int v_sint;
42 vector unsigned int v_ui;
43 vector float v_f;
44 vector bool char v_bc;
45 vector bool short v_bs;
46 vector bool int v_bi;
47 vector __bool char v___bc;
48 vector __bool short v___bs;
49 vector __bool int v___bi;
50 vector __pixel v_p;
51 vector pixel v__p;
52 vector int f__r();
53 void f_a(vector int a);
54 void f_a2(int b, vector int a);
56 vector int v = (vector int)(-1);
65 vector long v_l; // expected-warning {{Use of 'long' with '__vector' is deprecat…
66 vector signed long v_sl; // expected-warning {{Use of 'long' with '__vector' is deprecat…
67 vector unsigned long v_ul; // expected-warning {{Use of 'long' with '__vector' is deprecat…
68 vector long int v_li; // expected-warning {{Use of 'long' with '__vector' is deprecat…
69 vector signed long int v_sli; // expected-warning {{Use of 'long' with '__vector' is deprecat…
70 vector unsigned long int v_uli; // expected-warning {{Use of 'long' with '__vector' is deprecat…
72 vector long double v_ld; // expected-error {{cannot use 'long double' with '__vector'}}
76 vector double v_d2; // expected-error {{use of 'double' with '__vector' requires V…
79 vector bool long long v_bll3; // expected-error {{use of 'long long' with '__vector bool' re…
80 vector __bool long long v_bll4; // expected-error {{use of 'long long' with '__vector bool' re…
82 vector long double v_ld4; // expected-error {{cannot use 'long double' with '__vector'}}
83 vector bool v_b; // expected-error {{C++ requires a type specifier for all decl…
84 vector bool float v_bf; // expected-error {{cannot use 'float' with '__vector bool'}}
85 vector bool double v_bd; // expected-error {{cannot use 'double' with '__vector bool'}}
86 vector bool pixel v_bp; // expected-error {{cannot use '__pixel' with '__vector bool'}}
87 vector bool signed char v_bsc; // expected-error {{cannot use 'signed' with '__vector bool'}}
88 vector bool unsigned int v_bsc2; // expected-error {{cannot use 'unsigned' with '__vector bool'…
89 vector bool long v_bl; // expected-error {{cannot use 'long' with '__vector bool'}}
90 vector __bool float v___bf; // expected-error {{cannot use 'float' with '__vector bool'}}
91 vector __bool double v___bd; // expected-error {{cannot use 'double' with '__vector bool'}}
92 vector __bool pixel v___bp; // expected-error {{cannot use '__pixel' with '__vector bool'}}
93 vector __bool signed char v___bsc; // expected-error {{cannot use 'signed' with '__vector bool'}}
94 vector __bool unsigned int v___bsc2; // expected-error {{cannot use 'unsigned' with '__vector bool'…
95 vector __bool long v___bl; // expected-error {{cannot use 'long' with '__vector bool'}}
98 vector long long v_ll;
99 vector signed long long v_sll;
100 vector unsigned long long v_ull;
105 __vector int v_cast = (vector int)v; in f()
106 __vector char vb_cast = (vector char)v; in f()
138 vector int v;
139 vector int f__r();
140 void f__a(vector int a);
141 void f__a2(int b, vector int a);
146 vector char v1 = (vector char)((vector int)(1, 2, 3, 4));
147 vector char v2 = (vector char)((vector float)(1.0f, 2.0f, 3.0f, 4.0f));
148 vector char v3 = (vector char)((vector int)('a', 'b', 'c', 'd'));
149 vector int v4 = (vector int)(1, 2, 3, 4);
150 vector float v5 = (vector float)(1.0f, 2.0f, 3.0f, 4.0f);
151 vector char v6 = (vector char)((vector int)(1+2, -2, (int)(2.0 * 3), -(5-3)));