Lines Matching refs:TestTuple
999 struct TestTuple
1001 TestTuple() {}
1002 TestTuple(deUint32 m, deUint32 n, deUint32 k) : M(m), N(n), K(k) {}
1004 bool operator<(const TestTuple &other) const
1014 vector<TestTuple> testSizes;
1028 testSizes.push_back(TestTuple(p->MSize, p->NSize, p->KSize));
1034 set<TestTuple> typeSizes[2];
1051 if (aType && p->AType == types[j]) typeSizes[j].insert(TestTuple(p->MSize, p->KSize, 0));
1052 if (bType && p->BType == types[j]) typeSizes[j].insert(TestTuple(p->KSize, p->NSize, 0));
1053 if (rType && (p->CType == types[j] || p->ResultType == types[j])) typeSizes[j].insert(TestTuple(p->MSize, p->NSize, 0));