Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp247 std::vector<std::string> ArgVec; in LLVMRunFunctionAsMain() local
249 ArgVec.push_back(ArgV[I]); in LLVMRunFunctionAsMain()
251 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain()
259 std::vector<GenericValue> ArgVec; in LLVMRunFunction() local
260 ArgVec.reserve(NumArgs); in LLVMRunFunction()
262 ArgVec.push_back(*unwrap(Args[I])); in LLVMRunFunction()
265 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec); in LLVMRunFunction()
/minix/external/bsd/llvm/dist/llvm/lib/IR/
H A DConstants.cpp1914 Constant *ArgVec[] = { C1, C2 }; in get() local
1995 Constant *ArgVec[] = { C, V1, V2 }; in getSelect() local
2022 std::vector<Constant*> ArgVec; in getGetElementPtr() local
2023 ArgVec.reserve(1 + Idxs.size()); in getGetElementPtr()
2024 ArgVec.push_back(C); in getGetElementPtr()
2054 Constant *ArgVec[] = { LHS, RHS }; in getICmp() local
2078 Constant *ArgVec[] = { LHS, RHS }; in getFCmp() local
2105 Constant *ArgVec[] = { Val, Idx }; in getExtractElement() local
2151 Constant *ArgVec[] = { V1, V2, Mask }; in getShuffleVector() local
2175 Constant *ArgVec[] = { Agg, Val }; in getInsertValue() local
[all …]
/minix/external/bsd/llvm/dist/clang/lib/AST/
H A DASTContext.cpp3213 SmallVector<TemplateArgument, 4> ArgVec; in getTemplateSpecializationType() local
3214 ArgVec.reserve(NumArgs); in getTemplateSpecializationType()
3216 ArgVec.push_back(Args[i].getArgument()); in getTemplateSpecializationType()
3218 return getTemplateSpecializationType(Template, ArgVec.data(), NumArgs, in getTemplateSpecializationType()