plHandle          111 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftBakePlan)(clAmdFftPlanHandle plHandle, cl_uint numQueues, cl_command_queue* commQueueFFT, void (CL_CALLBACK* pfn_notify) (clAmdFftPlanHandle plHandle, void* user_data), void* user_data);
plHandle          113 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftCreateDefaultPlan)(clAmdFftPlanHandle* plHandle, cl_context context, const clAmdFftDim dim, const size_t* clLengths);
plHandle          114 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftDestroyPlan)(clAmdFftPlanHandle* plHandle);
plHandle          115 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftEnqueueTransform)(clAmdFftPlanHandle plHandle, clAmdFftDirection dir, cl_uint numQueuesAndEvents, cl_command_queue* commQueues, cl_uint numWaitEvents, const cl_event* waitEvents, cl_event* outEvents, cl_mem* inputBuffers, cl_mem* outputBuffers, cl_mem tmpBuffer);
plHandle          128 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftGetTmpBufSize)(const clAmdFftPlanHandle plHandle, size_t* buffersize);
plHandle          130 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftSetLayout)(clAmdFftPlanHandle plHandle, clAmdFftLayout iLayout, clAmdFftLayout oLayout);
plHandle          131 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftSetPlanBatchSize)(clAmdFftPlanHandle plHandle, size_t batchSize);
plHandle          133 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftSetPlanDistance)(clAmdFftPlanHandle plHandle, size_t iDist, size_t oDist);
plHandle          134 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftSetPlanInStride)(clAmdFftPlanHandle plHandle, const clAmdFftDim dim, size_t* clStrides);
plHandle          136 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftSetPlanOutStride)(clAmdFftPlanHandle plHandle, const clAmdFftDim dim, size_t* clStrides);
plHandle          137 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftSetPlanPrecision)(clAmdFftPlanHandle plHandle, clAmdFftPrecision precision);
plHandle          138 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftSetPlanScale)(clAmdFftPlanHandle plHandle, clAmdFftDirection dir, cl_float scale);
plHandle          140 modules/core/include/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp extern CL_RUNTIME_EXPORT clAmdFftStatus (*clAmdFftSetResultLocation)(clAmdFftPlanHandle plHandle, clAmdFftResultLocation placeness);
plHandle         2253 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftCreateDefaultPlan(&plHandle, (cl_context)ocl::Context::getDefault().ptr(), dim, clLengthsIn))
plHandle         2256 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftSetPlanPrecision(plHandle, doubleFP ? CLFFT_DOUBLE : CLFFT_SINGLE));
plHandle         2257 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftSetResultLocation(plHandle, inplace ? CLFFT_INPLACE : CLFFT_OUTOFPLACE))
plHandle         2258 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftSetLayout(plHandle, inLayout, outLayout))
plHandle         2259 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftSetPlanBatchSize(plHandle, batchSize))
plHandle         2260 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftSetPlanInStride(plHandle, dim, clStridesIn))
plHandle         2261 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftSetPlanOutStride(plHandle, dim, clStridesOut))
plHandle         2262 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftSetPlanDistance(plHandle, clStridesIn[dim], clStridesOut[dim]))
plHandle         2265 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftSetPlanScale(plHandle, dft_inverse ? CLFFT_BACKWARD : CLFFT_FORWARD, scale))
plHandle         2269 modules/core/src/dxt.cpp             CLAMDDFT_Assert(clAmdFftBakePlan(plHandle, 1, &queue, NULL, NULL))
plHandle         2288 modules/core/src/dxt.cpp         clAmdFftPlanHandle plHandle;
plHandle         2321 modules/core/src/dxt.cpp                 return plan->plHandle;
plHandle         2329 modules/core/src/dxt.cpp         return newPlan->plHandle;
plHandle         2399 modules/core/src/dxt.cpp     clAmdFftPlanHandle plHandle = PlanCache::getInstance().
plHandle         2405 modules/core/src/dxt.cpp     CLAMDDFT_Assert(clAmdFftGetTmpBufSize(plHandle, &bufferSize))
plHandle         2414 modules/core/src/dxt.cpp     CLAMDDFT_Assert(clAmdFftEnqueueTransform(plHandle, dft_inverse ? CLFFT_BACKWARD : CLFFT_FORWARD,
plHandle          229 modules/core/src/opencl/runtime/autogenerated/opencl_clamdfft_impl.hpp clAmdFftStatus (*clAmdFftBakePlan)(clAmdFftPlanHandle, cl_uint, cl_command_queue*, void (CL_CALLBACK*) (clAmdFftPlanHandle plHandle, void* user_data), void*) =
plHandle          230 modules/core/src/opencl/runtime/autogenerated/opencl_clamdfft_impl.hpp         openclamdfft_fn5<OPENCLAMDFFT_FN_clAmdFftBakePlan, clAmdFftStatus, clAmdFftPlanHandle, cl_uint, cl_command_queue*, void (CL_CALLBACK*) (clAmdFftPlanHandle plHandle, void* user_data), void*>::switch_fn;