Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
DCore.h1003 LLVMTypeRef FunctionTy);
1226 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
1231 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
1236 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
1249 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DCore.cpp649 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument
650 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()
653 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument
654 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()
657 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument
658 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()
661 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument
662 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()
2255 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument
2256 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()