Lines Matching defs:Rows
702 SmallVector<SmallVector<CodeGenSubRegIndex *, 4>, 4> Rows;
708 for (unsigned r = 0, re = Rows.size(); r != re; ++r) {
709 if (combine(&Idx, Rows[r])) {
715 Found = Rows.size();
716 Rows.resize(Found + 1);
717 Rows.back().resize(SubRegIndicesSize);
718 combine(&Idx, Rows.back());
724 if (Rows.size() > 1) {
725 OS << " static const " << getMinimalTypeForRange(Rows.size(), 32)
734 << " Rows[" << Rows.size() << "][" << SubRegIndicesSize << "] = {\n";
735 for (unsigned r = 0, re = Rows.size(); r != re; ++r) {
738 if (Rows[r][i])
739 OS << Rows[r][i]->getQualifiedName() << ", ";
748 if (Rows.size() > 1)
749 OS << " return Rows[RowMap[IdxA]][IdxB];\n";
751 OS << " return Rows[0][IdxB];\n";