Lines Matching refs:t3
210 void test_element_access(tuple<int*, float*, double*&> t3) {
214 get<0>(t3) = &i;
215 get<1>(t3) = &f;
216 get<2>(t3) = &d;
254 void test_relational_operators(tuple<int*, float*, double*> t3) {
255 (void)(t3 == t3);
256 (void)(t3 != t3);
257 (void)(t3 < t3);
258 (void)(t3 <= t3);
259 (void)(t3 >= t3);
260 (void)(t3 > t3);