Home | History | Annotate | Download | only in BitReader_3_0

Lines Matching defs:Elts

1457       SmallVector<Value*, 8> Elts;
1462 Elts.push_back(MDValueList.getValueFwdRef(Record[i+1]));
1464 Elts.push_back(ValueList.getValueFwdRef(Record[i+1], Ty));
1466 Elts.push_back(NULL);
1468 Value *V = MDNode::getWhenValsUnresolved(Context, Elts, IsFunctionLocal);
1644 std::vector<Constant*> Elts;
1648 Elts.push_back(ValueList.getConstantFwdRef(Record[i],
1650 V = ConstantStruct::get(STy, Elts);
1654 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
1655 V = ConstantArray::get(ATy, Elts);
1659 Elts.push_back(ValueList.getConstantFwdRef(Record[i], EltTy));
1660 V = ConstantVector::get(Elts);
1674 std::vector<Constant*> Elts;
1676 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
1677 V = ConstantArray::get(ATy, Elts);
1688 std::vector<Constant*> Elts;
1690 Elts.push_back(ConstantInt::get(EltTy, Record[i]));
1691 Elts.push_back(Constant::getNullValue(EltTy));
1692 V = ConstantArray::get(ATy, Elts);
1741 SmallVector<Constant*, 16> Elts;
1745 Elts.push_back(ValueList.getConstantFwdRef(Record[i+1], ElTy));
1747 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
1748 V = ConstantExpr::getGetElementPtr(Elts[0], Indices,