Searched refs:functionPtr (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/clang/lib/CodeGen/ |
D | CGCall.h | 112 CGCallee(const CGCalleeInfo &abstractInfo, llvm::Value *functionPtr) in CGCallee() argument 113 : KindOrFunctionPointer(SpecialKind(uintptr_t(functionPtr))) { in CGCallee() 115 assert(functionPtr && "configuring callee without function pointer"); in CGCallee() 116 assert(functionPtr->getType()->isPointerTy()); in CGCallee() 117 assert(functionPtr->getType()->getPointerElementType()->isFunctionTy()); in CGCallee() 134 static CGCallee forDirect(llvm::Constant *functionPtr, 136 return CGCallee(abstractInfo, functionPtr); 139 static CGCallee forDirect(llvm::FunctionCallee functionPtr, 141 return CGCallee(abstractInfo, functionPtr.getCallee()); 187 void setFunctionPointer(llvm::Value *functionPtr) { in setFunctionPointer() argument [all …]
|
/external/mdnsresponder/mDNSShared/ |
D | DebugServices.c | 901 void * functionPtr; in DebugMacOSXLogInit() local 918 functionPtr = CFBundleGetFunctionPointerForName( bundle, functionName ); in DebugMacOSXLogInit() 919 require_action_quiet( functionPtr, exit, err = memFullErr ); in DebugMacOSXLogInit() 923 gDebugMacOSXLogFunction = (DebugMacOSXLogFunctionPtr) functionPtr; in DebugMacOSXLogInit()
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_runtime_11_2.inc | 2145 cudaGetFuncBySymbol(cudaFunction_t *functionPtr, const void *symbolPtr) { 2149 return func_ptr(functionPtr, symbolPtr);
|