Lines Matching refs:Rows
710 SmallVector<SmallVector<CodeGenSubRegIndex*, 4>, 4> Rows; in emitComposeSubRegIndices() local
716 for (unsigned r = 0, re = Rows.size(); r != re; ++r) { in emitComposeSubRegIndices()
717 if (combine(&Idx, Rows[r])) { in emitComposeSubRegIndices()
723 Found = Rows.size(); in emitComposeSubRegIndices()
724 Rows.resize(Found + 1); in emitComposeSubRegIndices()
725 Rows.back().resize(SubRegIndicesSize); in emitComposeSubRegIndices()
726 combine(&Idx, Rows.back()); in emitComposeSubRegIndices()
732 if (Rows.size() > 1) { in emitComposeSubRegIndices()
733 OS << " static const " << getMinimalTypeForRange(Rows.size(), 32) in emitComposeSubRegIndices()
742 << " Rows[" << Rows.size() << "][" << SubRegIndicesSize << "] = {\n"; in emitComposeSubRegIndices()
743 for (unsigned r = 0, re = Rows.size(); r != re; ++r) { in emitComposeSubRegIndices()
746 if (Rows[r][i]) in emitComposeSubRegIndices()
747 OS << Rows[r][i]->getQualifiedName() << ", "; in emitComposeSubRegIndices()
756 if (Rows.size() > 1) in emitComposeSubRegIndices()