Home
last modified time | relevance | path

Searched refs:ArgVec (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/ExecutionEngine/
DExecutionEngineBindings.cpp257 std::vector<std::string> ArgVec; in LLVMRunFunctionAsMain() local
259 ArgVec.push_back(ArgV[I]); in LLVMRunFunctionAsMain()
261 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain()
269 std::vector<GenericValue> ArgVec; in LLVMRunFunction() local
270 ArgVec.reserve(NumArgs); in LLVMRunFunction()
272 ArgVec.push_back(*unwrap(Args[I])); in LLVMRunFunction()
275 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec); in LLVMRunFunction()
/external/llvm/lib/IR/
DConstants.cpp1735 Constant *ArgVec[] = { C1, C2 }; in get() local
1736 ExprMapKeyType Key(Opcode, ArgVec, 0, Flags); in get()
1812 Constant *ArgVec[] = { C, V1, V2 }; in getSelect() local
1813 ExprMapKeyType Key(Instruction::Select, ArgVec); in getSelect()
1836 std::vector<Constant*> ArgVec; in getGetElementPtr() local
1837 ArgVec.reserve(1 + Idxs.size()); in getGetElementPtr()
1838 ArgVec.push_back(C); in getGetElementPtr()
1846 ArgVec.push_back(cast<Constant>(Idxs[i])); in getGetElementPtr()
1848 const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0, in getGetElementPtr()
1865 Constant *ArgVec[] = { LHS, RHS }; in getICmp() local
[all …]
/external/clang/lib/AST/
DASTContext.cpp3124 SmallVector<TemplateArgument, 4> ArgVec; in getTemplateSpecializationType() local
3125 ArgVec.reserve(NumArgs); in getTemplateSpecializationType()
3127 ArgVec.push_back(Args[i].getArgument()); in getTemplateSpecializationType()
3129 return getTemplateSpecializationType(Template, ArgVec.data(), NumArgs, in getTemplateSpecializationType()