Searched refs:funcPtr (Results 1 – 10 of 10) sorted by relevance
/third_party/vk-gl-cts/modules/egl/ |
D | teglGetProcAddressTests.cpp | 196 void (*funcPtr)(void); in executeTest() local 198 funcPtr = eglGetProcAddress(funcName); in executeTest() 201 if (supported && funcPtr == 0) in executeTest() 323 void (*funcPtr)(void); in executeTest() local 325 funcPtr = eglGetProcAddress(funcName); in executeTest() 328 if (apiSupported && funcPtrSupported && (funcPtr == 0)) in executeTest() 333 else if (!apiSupported && (funcPtr != 0)) in executeTest()
|
/third_party/mindspore/mindspore/core/utils/ |
D | crypto.cc | 130 const EVP_CIPHER *(*funcPtr)() = nullptr; in GetEvpCipherCtx() local 134 funcPtr = EVP_aes_128_gcm; in GetEvpCipherCtx() 137 funcPtr = EVP_aes_192_gcm; in GetEvpCipherCtx() 140 funcPtr = EVP_aes_256_gcm; in GetEvpCipherCtx() 149 funcPtr = EVP_aes_128_cbc; in GetEvpCipherCtx() 152 funcPtr = EVP_aes_192_cbc; in GetEvpCipherCtx() 155 funcPtr = EVP_aes_256_cbc; in GetEvpCipherCtx() 169 ret = EVP_EncryptInit_ex(ctx, funcPtr(), NULL, key, iv); in GetEvpCipherCtx() 171 ret = EVP_DecryptInit_ex(ctx, funcPtr(), NULL, key, iv); in GetEvpCipherCtx()
|
/third_party/vk-gl-cts/framework/delibs/deutil/ |
D | deDynamicLibrary.c | 65 deFunctionPtr funcPtr; in deDynamicLibrary_getFunction() member 71 return ptr.funcPtr; in deDynamicLibrary_getFunction()
|
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/src/ |
D | ExpressionInterpreter.cpp | 36 bool ExpressionInterpreter::addExpression(callback funcPtr, string command) in addExpression() argument 67 currentWord->setFunc(funcPtr); in addExpression()
|
D | Expression.cpp | 427 void Expression::setFunc(callback funcPtr) in setFunc() argument 429 mFuncPtr = funcPtr; in setFunc()
|
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/include/ |
D | ExpressionInterpreter.h | 43 static bool addExpression(callback funcPtr, string command);
|
D | Expression.h | 45 void setFunc(callback funcPtr);
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cGlSpirvTests.hpp | 248 ValidationStruct(ValidationFuncPtr funcPtr) : validationFuncPtr(funcPtr) in ValidationStruct()
|
D | gl4cGlSpirvTests.cpp | 2461 ValidationFuncPtr funcPtr = m_validations[v].validationFuncPtr; in iterate() local 2462 result = (this->*funcPtr)(m_validations[v].outputs); in iterate()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactor.cpp | 3637 auto funcPtr = jit->builder->CreatePointerCast(V(fptr.value()), funcPtrTy); in Call() local 3641 return V(jit->builder->CreateCall(funcTy, funcPtr, arguments)); in Call()
|