Lines Matching refs:__v2si
2 typedef int __v2si __attribute__((__vector_size__(8))); typedef
12 __v2si v2si; in f()
21 (void)reinterpret_cast<__v2si>(v4hi); in f()
22 (void)(__v2si)v4hi; in f()
27 (void)reinterpret_cast<__v2si>(ll); in f()
28 (void)(__v2si)(ll); in f()
31 …(void)(__v2si)e; // expected-error {{C-style cast from 'E' to '__v2si' (vector of 2 'int' values)}} in f()
33 …(void)reinterpret_cast<__v2si>(e); // expected-error {{reinterpret_cast from 'E' to '__v2si' (vect… in f()
37 …(void)reinterpret_cast<__v2si>(s); // expected-error {{reinterpret_cast from 'S' to '__v2si' (vect… in f()
38 …(void)(__v2si)s; // expected-error {{cannot convert 'S' to '__v2si' (vector of 2 'int' values) wit… in f()
42 …(void)reinterpret_cast<__v2si>(c); // expected-error {{reinterpret_cast from scalar 'unsigned char… in f()
52 …(void)(__v2si)v3hi; // expected-error {{C-style cast from vector '__v3hi' (vector of 3 'short' val… in f()
56 …(void)reinterpret_cast<__v2si>(v3hi); // expected-error {{reinterpret_cast from vector '__v3hi' (v… in f()
60 __v2si v;