Lines Matching full:values

30 …(void)(E)v2si; // expected-error {{C-style cast from '__v2si' (vector of 2 'int' values) to 'E' is…  in f()
31 …(void)(__v2si)e; // expected-error {{C-style cast from 'E' to '__v2si' (vector of 2 'int' values)}} in f()
32 …); // expected-error {{reinterpret_cast from '__v2si' (vector of 2 'int' values) to 'E' is not all… in f()
33 …<__v2si>(e); // expected-error {{reinterpret_cast from 'E' to '__v2si' (vector of 2 'int' values)}} in f()
35 …); // expected-error {{reinterpret_cast from '__v2si' (vector of 2 'int' values) to 'S' is not all… in f()
36 …d-error {{no matching conversion for C-style cast from '__v2si' (vector of 2 'int' values) to 'S'}} in f()
37 … expected-error {{reinterpret_cast from 'S' to '__v2si' (vector of 2 'int' values) is not allowed}} in f()
38 …(void)(__v2si)s; // expected-error {{cannot convert 'S' to '__v2si' (vector of 2 'int' values) wit… in f()
40 …xpected-error {{reinterpret_cast from vector '__v2si' (vector of 2 'int' values) to scalar 'unsign… in f()
41 …// expected-error {{C-style cast from vector '__v2si' (vector of 2 'int' values) to scalar 'unsign… in f()
42 …t_cast from scalar 'unsigned char' to vector '__v2si' (vector of 2 'int' values) of different size… in f()
44 …t_cast from vector '__v4hi' (vector of 4 'short' values) to vector '__v8hi' (vector of 8 'short' v… in f()
45 …e cast from vector '__v4hi' (vector of 4 'short' values) to vector '__v8hi' (vector of 8 'short' v… in f()
46 …t_cast from vector '__v8hi' (vector of 8 'short' values) to vector '__v4hi' (vector of 4 'short' v… in f()
47 …e cast from vector '__v8hi' (vector of 8 'short' values) to vector '__v4hi' (vector of 4 'short' v… in f()
49 …e cast from vector '__v4hi' (vector of 4 'short' values) to vector '__v3hi' (vector of 3 'short' v… in f()
50 …yle cast from vector '__v2si' (vector of 2 'int' values) to vector '__v3hi' (vector of 3 'short' v… in f()
51 …e cast from vector '__v3hi' (vector of 3 'short' values) to vector '__v4hi' (vector of 4 'short' v… in f()
52 …le cast from vector '__v3hi' (vector of 3 'short' values) to vector '__v2si' (vector of 2 'int' va… in f()
53 …t_cast from vector '__v4hi' (vector of 4 'short' values) to vector '__v3hi' (vector of 3 'short' v… in f()
54 …ret_cast from vector '__v2si' (vector of 2 'int' values) to vector '__v3hi' (vector of 3 'short' v… in f()
55 …t_cast from vector '__v3hi' (vector of 3 'short' values) to vector '__v4hi' (vector of 4 'short' v… in f()
56 …et_cast from vector '__v3hi' (vector of 3 'short' values) to vector '__v2si' (vector of 2 'int' va… in f()
62 v = v + rhs; // expected-error {{cannot convert between vector and non-scalar values}} in madd()
65 v = v + rhs; // expected-error {{cannot convert between vector and non-scalar values}} in madd2()
70 // Conversions for return values.