Searched refs:cl_program (Results 1 - 11 of 11) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/clover/api/
H A Dprogram.cpp28 PUBLIC cl_program
56 PUBLIC cl_program
115 clRetainProgram(cl_program prog) {
124 clReleaseProgram(cl_program prog) {
135 clBuildProgram(cl_program prog, cl_uint count, const cl_device_id *devs,
136 const char *opts, void (*pfn_notify)(cl_program, void *),
168 clGetProgramInfo(cl_program prog, cl_program_info param,
223 clGetProgramBuildInfo(cl_program prog, cl_device_id dev,
H A Dkernel.cpp30 clCreateKernel(cl_program prog, const char *name,
56 clCreateKernelsInProgram(cl_program prog, cl_uint count,
142 return scalar_property<cl_program>(buf, size, size_ret,
/external/opencv3/modules/core/include/opencv2/core/opencl/runtime/autogenerated/
H A Dopencl_core.hpp283 extern CL_RUNTIME_EXPORT cl_int (CL_API_CALL*clBuildProgram)(cl_program, cl_uint, const cl_device_id*, const char*, void (CL_CALLBACK*) (cl_program, void*), void*);
284 extern CL_RUNTIME_EXPORT cl_int (CL_API_CALL*clCompileProgram)(cl_program, cl_uint, const cl_device_id*, const char*, cl_uint, const cl_program*, const char**, void (CL_CALLBACK*) (cl_program, void*), void*);
292 extern CL_RUNTIME_EXPORT cl_kernel (CL_API_CALL*clCreateKernel)(cl_program, const char*, cl_int*);
293 extern CL_RUNTIME_EXPORT cl_int (CL_API_CALL*clCreateKernelsInProgram)(cl_program, cl_uint, cl_kernel*, cl_uint*);
294 extern CL_RUNTIME_EXPORT cl_program (CL_API_CALL*clCreateProgramWithBinary)(cl_context, cl_uint, const cl_device_id*, const size_t*, const unsigned char**, cl_int*, cl_int*);
295 extern CL_RUNTIME_EXPORT cl_program (CL_API_CALL*clCreateProgramWithBuiltInKernels)(cl_context, cl_uint, const cl_device_id*, const char*, cl_int*);
296 extern CL_RUNTIME_EXPORT cl_program (CL_API_CAL
[all...]
H A Dopencl_core_wrappers.hpp11 inline cl_int clBuildProgram(cl_program p0, cl_uint p1, const cl_device_id* p2, const char* p3, void (CL_CALLBACK*p4) (cl_program, void*), void* p5) { return clBuildProgram_pfn(p0, p1, p2, p3, p4, p5); } argument
14 inline cl_int clCompileProgram(cl_program p0, cl_uint p1, const cl_device_id* p2, const char* p3, cl_uint p4, const cl_program* p5, const char** p6, void (CL_CALLBACK*p7) (cl_program, void*), void* p8) { return clCompileProgram_pfn(p0, p1, p2, p3, p4, p5, p6, p7, p8); } argument
38 inline cl_kernel clCreateKernel(cl_program p0, const char* p1, cl_int* p2) { return clCreateKernel_pfn(p0, p1, p2); }
41 inline cl_int clCreateKernelsInProgram(cl_program p0, cl_uint p1, cl_kernel* p2, cl_uint* p3) { return clCreateKernelsInProgram_pfn(p0, p1, p2, p3); }
44 inline cl_program clCreateProgramWithBinary(cl_context p0, cl_uint p1, const cl_device_id* p2, const size_t* p3, const unsigned char** p4, cl_int* p5, cl_int* p6) { return clCreateProgramWithBinary_pfn(p0, p1, p2, p3, p4, p5, p6); }
47 inline cl_program clCreateProgramWithBuiltInKernels(cl_context p0, cl_uint p1, const cl_device_id* p2, const char* p3, cl_int* p4) { return clCreateProgramWithBuiltInKernels_pfn(p0, p1, p2, p3, p4); }
50 inline cl_program clCreateProgramWithSourc
203 clLinkProgram(cl_context p0, cl_uint p1, const cl_device_id* p2, const char* p3, cl_uint p4, const cl_program* p5, void (CL_CALLBACK*p6) (cl_program, void*), void* p7, cl_int* p8) argument
[all...]
/external/opencv3/modules/core/src/opencl/runtime/autogenerated/
H A Dopencl_core_impl.hpp221 cl_int (CL_API_CALL*clBuildProgram)(cl_program, cl_uint, const cl_device_id*, const char*, void (CL_CALLBACK*) (cl_program, void*), void*) =
222 opencl_fn6<OPENCL_FN_clBuildProgram, cl_int, cl_program, cl_uint, const cl_device_id*, const char*, void (CL_CALLBACK*) (cl_program, void*), void*>::switch_fn;
225 cl_int (CL_API_CALL*clCompileProgram)(cl_program, cl_uint, const cl_device_id*, const char*, cl_uint, const cl_program*, const char**, void (CL_CALLBACK*) (cl_program, void*), void*) =
226 opencl_fn9<OPENCL_FN_clCompileProgram, cl_int, cl_program, cl_uint, const cl_device_id*, const char*, cl_uint, const cl_program*, const char**, void (CL_CALLBACK*) (cl_program, voi
[all...]
/external/opencv3/3rdparty/include/opencl/1.2/CL/
H A Dcl.h44 typedef struct _cl_program * cl_program; typedef in typeref:struct:_cl_program
737 extern CL_API_ENTRY cl_program CL_API_CALL
744 extern CL_API_ENTRY cl_program CL_API_CALL
753 extern CL_API_ENTRY cl_program CL_API_CALL
761 clRetainProgram(cl_program /* program */) CL_API_SUFFIX__VERSION_1_0;
764 clReleaseProgram(cl_program /* program */) CL_API_SUFFIX__VERSION_1_0;
767 clBuildProgram(cl_program /* program */,
771 void (CL_CALLBACK * /* pfn_notify */)(cl_program /* program */, void * /* user_data */),
775 clCompileProgram(cl_program /* program */,
780 const cl_program * /* input_header
[all...]
H A Dcl.hpp1638 struct ReferenceHandler<cl_program>
1640 static cl_int retain(cl_program program)
1642 static cl_int release(cl_program program)
4567 * \brief Program interface that implements cl_program.
4569 class Program : public detail::Wrapper<cl_program>
4812 __CL_EXPLICIT_CONSTRUCTORS Program(const cl_program& program) : detail::Wrapper<cl_type>(program) { }
4822 Program& operator = (const cl_program& rhs)
4831 void (CL_CALLBACK * notifyFptr)(cl_program, void *) = NULL,
4854 void (CL_CALLBACK * notifyFptr)(cl_program, void *) = NULL,
4871 void (CL_CALLBACK * notifyFptr)(cl_program, voi
[all...]
/external/mesa3d/include/CL/
H A Dcl.h46 typedef struct _cl_program * cl_program; typedef in typeref:struct:_cl_program
634 extern CL_API_ENTRY cl_program CL_API_CALL
641 extern CL_API_ENTRY cl_program CL_API_CALL
651 clRetainProgram(cl_program /* program */) CL_API_SUFFIX__VERSION_1_0;
654 clReleaseProgram(cl_program /* program */) CL_API_SUFFIX__VERSION_1_0;
657 clBuildProgram(cl_program /* program */,
661 void (CL_CALLBACK * /* pfn_notify */)(cl_program /* program */, void * /* user_data */),
668 clGetProgramInfo(cl_program /* program */,
675 clGetProgramBuildInfo(cl_program /* program */,
684 clCreateKernel(cl_program /* progra
[all...]
H A Dcl.hpp1063 struct ReferenceHandler<cl_program>
1065 static cl_int retain(cl_program program)
1067 static cl_int release(cl_program program)
2384 * \brief Program interface that implements cl_program.
2386 class Program : public detail::Wrapper<cl_program>
2462 void (CL_CALLBACK * notifyFptr)(cl_program, void *) = NULL,
/external/libchrome/base/
H A Dcommand_line_unittest.cc358 CommandLine cl_program(kProgram);
359 EXPECT_EQ(kProgram.value(), cl_program.GetProgram().value());
360 EXPECT_EQ(kProgram.value(), cl_program.GetCommandLineString());
/external/opencv3/modules/core/src/
H A Docl.cpp211 typedef struct _cl_program * cl_program; typedef in typeref:struct:_cl_program
966 (cl_program program,
1093 OCL_FUNC(cl_int, clRetainProgram, (cl_program program), (program))
1110 OCL_FUNC_P(cl_program, clCreateProgramWithSource,
1118 OCL_FUNC_P(cl_program, clCreateProgramWithBinary,
1128 OCL_FUNC(cl_int, clReleaseProgram, (cl_program program), (program))
1131 (cl_program program,
1135 void (CL_CALLBACK * pfn_notify)(cl_program, void *),
1140 (cl_program program,
1148 (cl_program progra
[all...]

Completed in 1105 milliseconds