Lines Matching defs:Kernel
5685 class Kernel;
5766 //! \brief Local address wrapper for use with Kernel::setArg
5825 class Kernel : public detail::Wrapper<cl_kernel>
5828 inline Kernel(const Program& program, const char* name, cl_int* err = NULL);
5831 Kernel() { }
5839 * into the new Kernel object.
5841 explicit Kernel(const cl_kernel& kernel, bool retainObject = false) :
5849 Kernel& operator = (const cl_kernel& rhs)
5858 Kernel(const Kernel& kernel) : detail::Wrapper<cl_type>(kernel) {}
5863 Kernel& operator = (const Kernel &kernel)
5872 Kernel(Kernel&& kernel) CL_HPP_NOEXCEPT_ : detail::Wrapper<cl_type>(std::move(kernel)) {}
5877 Kernel& operator = (Kernel &&kernel)
6143 Kernel clone()
6146 Kernel retValue(clCloneKernel(this->get(), &error));
6732 cl_int createKernels(vector<Kernel>* kernels)
6756 (*kernels)[i] = Kernel(value[i], false);
6954 inline Kernel::Kernel(const Program& program, const char* name, cl_int* err)
8453 const Kernel& kernel,
8480 const Kernel& kernel,
9960 Kernel kernel_;
9982 KernelFunctor(Kernel kernel) : kernel_(kernel)
10056 Kernel getKernel()
10082 const Kernel kernel) :