HomeSort by relevance Sort by last modified time
    Searched refs:ParamTys (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/CodeGen/
JumpInstrTables.cpp 206 std::vector<Type *> ParamTys(FunTy->getNumParams());
223 ParamTys[i] = VoidPtrTy;
226 return FunctionType::get(RetTy, ParamTys, IsVarArg);
236 ParamTys[i] = VoidPtrTy;
238 ParamTys[i] = VoidFnTy;
240 ParamTys[i] = Int32Ty;
244 return FunctionType::get(RetTy, ParamTys, IsVarArg);
IntrinsicLowering.cpp 32 std::vector<Type *> ParamTys;
34 ParamTys.push_back(I->getType());
35 M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
72 std::vector<Type *> ParamTys;
74 ParamTys.push_back((*I)->getType());
76 FunctionType::get(RetTy, ParamTys, false));
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 69 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;
409 ParamTys.reserve(Arguments.size());
411 ParamTys.push_back(Arguments[Idx]->getType());
412 return TopTTI->getIntrinsicCost(IID, RetTy, ParamTys);
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 145 ArrayRef<Type *> ParamTys) const;
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 313 CAMLprim LLVMTypeRef llvm_function_type(LLVMTypeRef RetTy, value ParamTys) {
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);
    [all...]
  /external/clang/lib/Sema/
SemaType.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 2795 milliseconds