Lines Matching refs:__vector

7 __vector char vv_c;
8 __vector signed char vv_sc;
9 __vector unsigned char vv_uc;
10 __vector short vv_s;
11 __vector signed short vv_ss;
12 __vector unsigned short vv_us;
13 __vector short int vv_si;
14 __vector signed short int vv_ssi;
15 __vector unsigned short int vv_usi;
16 __vector int vv_i;
17 __vector signed int vv_sint;
18 __vector unsigned int vv_ui;
19 __vector float vv_f;
20 __vector bool char vv_bc;
21 __vector bool short vv_bs;
22 __vector bool int vv_bi;
23 __vector __bool char vv___bc;
24 __vector __bool short vv___bs;
25 __vector __bool int vv___bi;
26 __vector __pixel vv_p;
27 __vector pixel vv__p;
28 __vector int vf__r();
29 void vf__a(__vector int a);
30 void vf__a2(int b, __vector int a);
60 __vector long vv_l; // nonaix-warning {{Use of 'long' with '__vector' is deprecated…
62 __vector signed long vv_sl; // nonaix-warning {{Use of 'long' with '__vector' is deprecated…
64 __vector unsigned long vv_ul; // nonaix-warning {{Use of 'long' with '__vector' is deprecated…
66 __vector long int vv_li; // nonaix-warning {{Use of 'long' with '__vector' is deprecated…
68 __vector signed long int vv_sli; // nonaix-warning {{Use of 'long' with '__vector' is deprecated…
70 __vector unsigned long int vv_uli; // nonaix-warning {{Use of 'long' with '__vector' is deprecated…
86 __vector long double vv_ld; // expected-error {{cannot use 'long double' with '__vector'}}
92 __vector double vv_d1; // expected-error {{use of 'double' with '__vector' requires V…
94 __vector bool long long v_bll1; // expected-error {{use of 'long long' with '__vector bool' re…
95 __vector __bool long long v_bll2; // expected-error {{use of 'long long' with '__vector bool' re…
98 __vector long double vv_ld3; // expected-error {{cannot use 'long double' with '__vector'}}
129 __vector unsigned int v = {0,0,0,0}; in f()
130 __vector int v__cast = (__vector int)v; in f()
131 __vector int v_cast = (vector int)v; in f()
132 __vector char vb_cast = (vector char)v; in f()
140 __vector unsigned int av = gccv; in f()
141 __vector int avi = (__vector int)gccv; in f()
149 __vector unsigned int tv = gccv; in f()