Home
last modified time | relevance | path

Searched refs:funcPtr (Results 1 – 10 of 10) sorted by relevance

/third_party/vk-gl-cts/modules/egl/
DteglGetProcAddressTests.cpp196 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/
Dcrypto.cc130 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/
DdeDynamicLibrary.c65 deFunctionPtr funcPtr; in deDynamicLibrary_getFunction() member
71 return ptr.funcPtr; in deDynamicLibrary_getFunction()
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/src/
DExpressionInterpreter.cpp36 bool ExpressionInterpreter::addExpression(callback funcPtr, string command) in addExpression() argument
67 currentWord->setFunc(funcPtr); in addExpression()
DExpression.cpp427 void Expression::setFunc(callback funcPtr) in setFunc() argument
429 mFuncPtr = funcPtr; in setFunc()
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/include/
DExpressionInterpreter.h43 static bool addExpression(callback funcPtr, string command);
DExpression.h45 void setFunc(callback funcPtr);
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cGlSpirvTests.hpp248 ValidationStruct(ValidationFuncPtr funcPtr) : validationFuncPtr(funcPtr) in ValidationStruct()
Dgl4cGlSpirvTests.cpp2461 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/
DLLVMReactor.cpp3637 auto funcPtr = jit->builder->CreatePointerCast(V(fptr.value()), funcPtrTy); in Call() local
3641 return V(jit->builder->CreateCall(funcTy, funcPtr, arguments)); in Call()