Lines Matching refs:__v4hi
3 typedef short __v4hi __attribute__((__vector_size__(8))); typedef
14 __v4hi v4hi; in f()
23 (void)reinterpret_cast<__v4hi>(v2si); in f()
24 (void)(__v4hi)v2si; in f()
46 …(void)reinterpret_cast<__v4hi>(v8hi); // expected-error {{reinterpret_cast from vector '__v8hi' (v… in f()
47 …(void)(__v4hi)v8hi; // expected-error {{C-style cast from vector '__v8hi' (vector of 8 'short' val… in f()
51 …(void)(__v4hi)v3hi; // expected-error {{C-style cast from vector '__v3hi' (vector of 3 'short' val… in f()
55 …(void)reinterpret_cast<__v4hi>(v3hi); // expected-error {{reinterpret_cast from vector '__v3hi' (v… in f()
71 __v4hi threeToFour(__v3hi v) { // expected-note {{not viable}} in threeToFour()
74 __v3hi fourToThree(__v4hi v) { // expected-note {{not viable}} in fourToThree()
78 void call3to4(__v4hi v) { in call3to4()