Home
last modified time | relevance | path

Searched refs:FunctionTy (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/VMCore/
DCore.cpp272 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument
273 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()
276 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument
277 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()
280 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument
281 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()
284 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument
285 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()
1264 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument
1265 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
/external/swiftshader/third_party/LLVM/include/llvm-c/
DCore.h401 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
402 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
403 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
404 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
729 LLVMTypeRef FunctionTy);
/external/llvm/tools/dsymutil/
DMachOUtils.cpp124 template <typename FunctionTy>
126 FunctionTy Handler) { in iterateOnSegments()
/external/llvm/include/llvm-c/
DCore.h725 LLVMTypeRef FunctionTy);
945 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
950 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
955 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
968 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/external/llvm/lib/IR/
DCore.cpp486 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument
487 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()
490 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument
491 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()
494 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument
495 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()
498 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument
499 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()
1746 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument
1747 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
/external/clang/lib/Sema/
DSemaLambda.cpp1344 QualType FunctionTy = S.Context.getFunctionType( in addBlockPointerConversion() local
1346 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp414 llvm::FunctionType *FunctionTy = in EmitFunctionInstrumentation() local
417 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn); in EmitFunctionInstrumentation()