Lines Matching refs:__vector

5 __vector char vv_c;
6 __vector signed char vv_sc;
7 __vector unsigned char vv_uc;
8 __vector short vv_s;
9 __vector signed short vv_ss;
10 __vector unsigned short vv_us;
11 __vector short int vv_si;
12 __vector signed short int vv_ssi;
13 __vector unsigned short int vv_usi;
14 __vector int vv_i;
15 __vector signed int vv_sint;
16 __vector unsigned int vv_ui;
17 __vector float vv_f;
18 __vector bool char vv_bc;
19 __vector bool short vv_bs;
20 __vector bool int vv_bi;
21 __vector __bool char vv___bc;
22 __vector __bool short vv___bs;
23 __vector __bool int vv___bi;
24 __vector __pixel vv_p;
25 __vector pixel vv__p;
26 __vector int vf__r();
27 void vf__a(__vector int a);
28 void vf__a2(int b, __vector int a);
58 __vector long vv_l; // expected-warning {{Use of 'long' with '__vector' is deprecat…
59 __vector signed long vv_sl; // expected-warning {{Use of 'long' with '__vector' is deprecat…
60 __vector unsigned long vv_ul; // expected-warning {{Use of 'long' with '__vector' is deprecat…
61 __vector long int vv_li; // expected-warning {{Use of 'long' with '__vector' is deprecat…
62 __vector signed long int vv_sli; // expected-warning {{Use of 'long' with '__vector' is deprecat…
63 __vector unsigned long int vv_uli; // expected-warning {{Use of 'long' with '__vector' is deprecat…
70 __vector long double vv_ld; // expected-error {{cannot use 'long double' with '__vector'}}
76 __vector double vv_d1; // expected-error {{use of 'double' with '__vector' requires V…
78 __vector bool long long v_bll1; // expected-error {{use of 'long long' with '__vector bool' re…
79 __vector __bool long long v_bll2; // expected-error {{use of 'long long' with '__vector bool' re…
82 __vector long double vv_ld3; // expected-error {{cannot use 'long double' with '__vector'}}
113 __vector unsigned int v = {0,0,0,0}; in f()
114 __vector int v__cast = (__vector int)v; in f()
115 __vector int v_cast = (vector int)v; in f()
116 __vector char vb_cast = (vector char)v; in f()
124 __vector unsigned int av = gccv; in f()
125 __vector int avi = (__vector int)gccv; in f()
133 __vector unsigned int tv = gccv; in f()