Home | History | Annotate | Download | only in CL

Lines Matching refs:Program

105  *       cl::Program::Sources source(1,
107 * cl::Program program_ = cl::Program(context, source);
199 class Program;
888 F(cl_kernel_info, CL_KERNEL_PROGRAM, cl::Program) \
1065 static cl_int retain(cl_program program)
1066 { return ::clRetainProgram(program); }
1067 static cl_int release(cl_program program)
1068 { return ::clReleaseProgram(program); }
2204 class Program;
2292 inline Kernel(const Program& program, const char* name, cl_int* err = NULL);
2383 /*! \class Program
2384 * \brief Program interface that implements cl_program.
2386 class Program : public detail::Wrapper<cl_program>
2392 Program(
2417 Program(
2447 Program() { }
2449 Program(const Program& program) : detail::Wrapper<cl_type>(program) { }
2451 Program& operator = (const Program& rhs)
2541 __GET_INFO_HELPER_WITH_RETAIN(cl::Program)
2543 inline Kernel::Kernel(const Program& program, const char* name, cl_int* err)
2547 object_ = ::clCreateKernel(program(), name, &error);