Searched refs:dispatchTab (Results 1 - 4 of 4) sorted by relevance

/frameworks/rs/cpp/
H A DrsDispatch.cpp26 bool loadSymbols(void* handle, dispatchTable& dispatchTab, int targetApiLevel) { argument
29 dispatchTab.SetNativeLibDir = (SetNativeLibDirFnPtr)dlsym(handle, "rsaContextSetNativeLibDir");
30 if (dispatchTab.SetNativeLibDir == nullptr) {
31 LOG_ERR("Couldn't initialize dispatchTab.SetNativeLibDir");
36 dispatchTab.Allocation1DData = (Allocation1DDataFnPtr)dlsym(handle, "rsAllocation1DData");
37 dispatchTab.Allocation1DElementData = (Allocation1DElementDataFnPtr)dlsym(handle, "rsAllocation1DElementData");
38 dispatchTab.Allocation1DRead = (Allocation1DReadFnPtr)dlsym(handle, "rsAllocation1DRead");
39 dispatchTab.Allocation2DData = (Allocation2DDataFnPtr)dlsym(handle, "rsAllocation2DData");
40 dispatchTab.Allocation2DRead = (Allocation2DReadFnPtr)dlsym(handle, "rsAllocation2DRead");
41 dispatchTab
[all...]
H A DrsDispatch.h264 bool loadSymbols(void* handle, dispatchTable& dispatchTab, int device_api = 0);
/frameworks/rs/support/jni/
H A Dandroid_rscompat_usage_io.cpp9 extern "C" void AllocationSetSurface(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc, jobject sur, dispatchTable dispatchTab) argument
18 dispatchTab.AllocationSetSurface(con, alloc, s);
H A Dandroid_renderscript_RenderScript.cpp270 static dispatchTable dispatchTab; variable
293 if (loadSymbols(handle, dispatchTab, targetApi) == false) {
350 dispatchTab.ContextFinish((RsContext)con);
442 ret = (jlong)(uintptr_t)dispatchTab.ClosureCreate(
499 ret = (jlong)(uintptr_t)dispatchTab.InvokeClosureCreate(
518 dispatchTab.ClosureSetArg((RsContext)con, (RsClosure)closureID, (uint32_t)index,
526 dispatchTab.ClosureSetGlobal((RsContext)con, (RsClosure)closureID,
557 ret = (jlong)(uintptr_t)dispatchTab.ScriptGroup2Create(
571 dispatchTab.ScriptGroupExecute((RsContext)con, (RsScriptGroup2)groupID);
578 dispatchTab
[all...]

Completed in 221 milliseconds