Home
last modified time | relevance | path

Searched refs:cl_program (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/clover/api/
Dprogram.cpp28 PUBLIC cl_program
56 PUBLIC cl_program
115 clRetainProgram(cl_program prog) { in clRetainProgram()
124 clReleaseProgram(cl_program prog) { in clReleaseProgram()
135 clBuildProgram(cl_program prog, cl_uint count, const cl_device_id *devs, in clBuildProgram()
136 const char *opts, void (*pfn_notify)(cl_program, void *), in clBuildProgram() argument
168 clGetProgramInfo(cl_program prog, cl_program_info param, in clGetProgramInfo()
223 clGetProgramBuildInfo(cl_program prog, cl_device_id dev, in clGetProgramBuildInfo()
Dkernel.cpp30 clCreateKernel(cl_program prog, const char *name, in clCreateKernel()
56 clCreateKernelsInProgram(cl_program prog, cl_uint count, in clCreateKernelsInProgram()
142 return scalar_property<cl_program>(buf, size, size_ret, in clGetKernelInfo()
/external/mesa3d/include/CL/
Dcl.h46 typedef struct _cl_program * cl_program; typedef
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 /* program */,
[all …]
Dcl.hpp1063 struct ReferenceHandler<cl_program>
1065 static cl_int retain(cl_program program) in retain()
1067 static cl_int release(cl_program program) in release()
2386 class Program : public detail::Wrapper<cl_program>
2462 void (CL_CALLBACK * notifyFptr)(cl_program, void *) = NULL, in build() argument
/external/skia/tools/skpdiff/
DSkCLImageDiffer.cpp63 cl_program program = clCreateProgramWithSource(fContext, 1, &source, &sourceLen, NULL); in loadKernelSource()