Lines Matching refs:TwoInts
6 using TwoInts = int __attribute__((__vector_size__(8))); typedef
19 TwoInts two_ints;
131 …static_assert(is_same_v<TwoInts, decltype(declval<TwoInts>() ? declval<TwoInts>() : declval<TwoInt… in ResultTypes()
132 …static_assert(is_same_v<TwoFloats, decltype(declval<TwoInts>() ? declval<TwoFloats>() : declval<Tw… in ResultTypes()
135 …static_assert(is_same_v<TwoUInts, decltype(declval<TwoInts>() ? declval<int>() : declval<unsigned … in ResultTypes()
138 static_assert(is_same_v<TwoFloats, decltype(declval<TwoInts>() ? declval<float>() : 5u)>); in ResultTypes()
139 static_assert(is_same_v<TwoFloats, decltype(declval<TwoInts>() ? 5 : declval<float>())>); in ResultTypes()
142 …static_assert(is_same_v<TwoFloats, decltype(declval<TwoInts>() ? declval<TwoFloats>() : declval<fl… in ResultTypes()
143 …static_assert(is_same_v<TwoInts, decltype(declval<TwoInts>() ? declval<TwoInts>() : declval<int>()… in ResultTypes()
144 static_assert(is_same_v<TwoFloats, decltype(declval<TwoInts>() ? declval<TwoFloats>() : 5)>); in ResultTypes()
147 static_assert(is_same_v<TwoInts, decltype(declval<TwoInts>() ?: declval<TwoInts>())>); in ResultTypes()
148 static_assert(is_same_v<TwoInts, decltype(declval<TwoInts>() ?: declval<int>())>); in ResultTypes()