Home | History | Annotate | Download | only in BitReader_3_0

Lines Matching defs:Elts

1773       SmallVector<Metadata *, 8> Elts;
1779 Elts.push_back(MDValueList.getValueFwdRef(Record[i+1]));
1785 Elts.push_back(MD);
1787 Elts.push_back(nullptr);
1789 MDValueList.AssignValue(MDNode::get(Context, Elts), NextMDValueNo++);
2004 SmallVector<Constant*, 16> Elts;
2008 Elts.push_back(ValueList.getConstantFwdRef(Record[i],
2010 V = ConstantStruct::get(STy, Elts);
2014 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
2015 V = ConstantArray::get(ATy, Elts);
2019 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
2020 V = ConstantVector::get(Elts);
2034 std::vector<Constant*> Elts;
2036 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
2037 V = ConstantArray::get(ATy, Elts);
2048 std::vector<Constant*> Elts;
2050 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
2051 Elts.push_back(Constant::getNullValue(EltTy));
2052 V = ConstantArray::get(ATy, Elts);
2106 SmallVector<Constant*, 16> Elts;
2111 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
2113 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
2114 V = ConstantExpr::getGetElementPtr(PointeeType, Elts[0], Indices,