Home | History | Annotate | Download | only in BitReader_2_7

Lines Matching defs:Elts

1480       SmallVector<Metadata *, 8> Elts;
1486 Elts.push_back(MDValueList.getValueFwdRef(Record[i+1]));
1492 Elts.push_back(MD);
1494 Elts.push_back(nullptr);
1496 MDValueList.AssignValue(MDNode::get(Context, Elts), NextMDValueNo++);
1711 SmallVector<Constant*, 16> Elts;
1715 Elts.push_back(ValueList.getConstantFwdRef(Record[i],
1717 V = ConstantStruct::get(STy, Elts);
1721 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
1722 V = ConstantArray::get(ATy, Elts);
1726 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
1727 V = ConstantVector::get(Elts);
1741 std::vector<Constant*> Elts;
1743 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
1744 V = ConstantArray::get(ATy, Elts);
1755 std::vector<Constant*> Elts;
1757 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
1758 Elts.push_back(Constant::getNullValue(EltTy));
1759 V = ConstantArray::get(ATy, Elts);
1813 SmallVector<Constant*, 16> Elts;
1818 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
1820 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
1821 V = ConstantExpr::getGetElementPtr(PointeeType, Elts[0], Indices,