Searched defs:ParamTys (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp32 std::vector<Type *> ParamTys; local
34 ParamTys.push_back(I->getType());
35 M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
72 std::vector<Type *> ParamTys; local
74 ParamTys.push_back((*I)->getType());
76 FunctionType::get(RetTy, ParamTys, false));
/external/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp69 Intrinsic::ID IID, Type *RetTy, ArrayRef<Type *> ParamTys) const {
70 return PrevTTI->getIntrinsicCost(IID, RetTy, ParamTys);
361 SmallVector<Type *, 8> ParamTys(FTy->param_begin(), FTy->param_end());
362 return TopTTI->getIntrinsicCost(IID, FTy->getReturnType(), ParamTys);
380 ArrayRef<Type *> ParamTys) const override {
408 SmallVector<Type *, 8> ParamTys; variable
409 ParamTys.reserve(Arguments.size());
411 ParamTys.push_back(Arguments[Idx]->getType());
412 return TopTTI->getIntrinsicCost(IID, RetTy, ParamTys);
/external/clang/lib/Sema/
H A DSemaType.cpp2898 SmallVector<QualType, 16> ParamTys; local
2899 ParamTys.reserve(FTI.NumParams);
2967 ParamTys.push_back(ParamTy);
2999 T = Context.getFunctionType(T, ParamTys, EPI);
H A DSemaOverload.cpp6443 /// operator. ResultTy and ParamTys are the result and parameter types
6450 void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, argument
6466 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx];
6486 assert(ParamTys[ArgIdx] == Context.BoolTy &&
6492 = TryCopyInitialization(*this, Args[ArgIdx], ParamTys[ArgIdx],
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c313 CAMLprim LLVMTypeRef llvm_function_type(LLVMTypeRef RetTy, value ParamTys) { argument
314 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys,
315 Wosize_val(ParamTys), 0);
320 value ParamTys) {
321 return LLVMFunctionType(RetTy, (LLVMTypeRef *) ParamTys,
322 Wosize_val(ParamTys), 1);
319 llvm_var_arg_function_type(LLVMTypeRef RetTy, value ParamTys) argument

Completed in 150 milliseconds