Home
last modified time | relevance | path

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

12

/third_party/mesa3d/src/gallium/frontends/clover/api/
H A Dprogram.cpp46 build_notifier(cl_program prog, in build_notifier()
47 void (*notifer)(cl_program, void *), void *data) : in build_notifier()
56 cl_program prog_;
57 void (*notifer)(cl_program, void *);
64 void (*pfn_notify)(cl_program, void *), in validate_build_common()
102 CLOVER_API cl_program
128 CLOVER_API cl_program
183 cl_program
217 CLOVER_API cl_program
225 CLOVER_API cl_program
427 clLinkProgram(cl_context d_ctx, cl_uint num_devs, const cl_device_id *d_devs, const char *p_opts, cl_uint num_progs, const cl_program *d_progs, void (*pfn_notify) (cl_program, void *), void *user_data, cl_int *r_errcode) clLinkProgram() argument
[all...]
H A Dinvalid.cpp88 clSetProgramReleaseCallback(cl_program d_prog, in clSetProgramReleaseCallback()
89 void (CL_CALLBACK *pfn_notify)(cl_program program, void *user_data), in clSetProgramReleaseCallback()
95 clSetProgramSpecializationConstant(cl_program program, in clSetProgramSpecializationConstant()
H A Dkernel.cpp30 clCreateKernel(cl_program d_prog, const char *name, cl_int *r_errcode) try { in clCreateKernel()
51 clCreateKernelsInProgram(cl_program d_prog, cl_uint count, in clCreateKernelsInProgram()
134 buf.as_scalar<cl_program>() = desc(kern.program()); in clGetKernelInfo()
H A Ddispatch.hpp104 cl_program
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Dcl_stubs_autogen.h160 cl_program CreateProgramWithSource(cl_context context,
165 cl_program CreateProgramWithBinary(cl_context context,
172 cl_program CreateProgramWithBuiltInKernels(cl_context context,
177 cl_program CreateProgramWithIL(cl_context context,
181 cl_int RetainProgram(cl_program program);
182 cl_int ReleaseProgram(cl_program program);
183 cl_int BuildProgram(cl_program program,
187 void(CL_CALLBACK *pfn_notify)(cl_program program, void *user_data),
189 cl_int CompileProgram(cl_program program,
194 const cl_program *input_header
[all...]
H A Dentry_points_cl_autogen.h100 cl_program CL_API_CALL clCreateProgramWithSource(cl_context context,
105 cl_program CL_API_CALL clCreateProgramWithBinary(cl_context context,
112 cl_int CL_API_CALL clRetainProgram(cl_program program);
113 cl_int CL_API_CALL clReleaseProgram(cl_program program);
114 cl_int CL_API_CALL clBuildProgram(cl_program program,
118 void(CL_CALLBACK *pfn_notify)(cl_program program,
121 cl_int CL_API_CALL clGetProgramInfo(cl_program program,
126 cl_int CL_API_CALL clGetProgramBuildInfo(cl_program program,
132 cl_kernel CL_API_CALL clCreateKernel(cl_program program,
135 cl_int CL_API_CALL clCreateKernelsInProgram(cl_program progra
[all...]
H A Dcl_stubs.cpp397 cl_program CreateProgramWithSource(cl_context context, in CreateProgramWithSource()
406 cl_program CreateProgramWithBinary(cl_context context, in CreateProgramWithBinary()
418 cl_program CreateProgramWithBuiltInKernels(cl_context context, in CreateProgramWithBuiltInKernels()
428 cl_program CreateProgramWithIL(cl_context context, const void *il, size_t length, cl_int &errorCode) in CreateProgramWithIL()
433 cl_int RetainProgram(cl_program program) in RetainProgram()
439 cl_int ReleaseProgram(cl_program program) in ReleaseProgram()
449 cl_int BuildProgram(cl_program program, in BuildProgram()
453 void(CL_CALLBACK *pfn_notify)(cl_program program, void *user_data), in BuildProgram()
459 cl_int CompileProgram(cl_program program, in CompileProgram()
464 const cl_program *input_header in CompileProgram()
[all...]
H A Dentry_points_cl_autogen.cpp407 cl_program CL_API_CALL clCreateProgramWithSource(cl_context context, in clCreateProgramWithSource()
422 cl_program object = CreateProgramWithSource(context, count, strings, lengths, errorCode); in clCreateProgramWithSource()
432 cl_program CL_API_CALL clCreateProgramWithBinary(cl_context context, in clCreateProgramWithBinary()
451 cl_program object = CreateProgramWithBinary(context, num_devices, device_list, lengths, in clCreateProgramWithBinary()
462 cl_int CL_API_CALL clRetainProgram(cl_program program) in clRetainProgram()
471 cl_int CL_API_CALL clReleaseProgram(cl_program program) in clReleaseProgram()
480 cl_int CL_API_CALL clBuildProgram(cl_program program, in clBuildProgram()
484 void(CL_CALLBACK *pfn_notify)(cl_program program, in clBuildProgram()
501 cl_int CL_API_CALL clGetProgramInfo(cl_program program, in clGetProgramInfo()
523 cl_int CL_API_CALL clGetProgramBuildInfo(cl_program progra
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
H A DCLProgramCL.h21 CLProgramCL(const cl::Program &program, cl_program native);
24 cl_program getNative() const;
56 static void CL_CALLBACK Callback(cl_program program, void *userData);
58 const cl_program mNative;
63 inline cl_program CLProgramCL::getNative() const in getNative()
H A DCLProgramCL.cpp19 CLProgramCL::CLProgramCL(const cl::Program &program, cl_program native) in CLProgramCL()
82 std::vector<cl_program> nativePrograms; in compile()
88 const cl_program *const inputHeadersPtr = in compile()
150 void CLProgramCL::Callback(cl_program program, void *userData) in Callback()
H A DCLContextCL.cpp257 const cl_program nativeProgram = mNative->getDispatch().clCreateProgramWithSource( in createProgramWithSource()
268 const cl_program nativeProgram = in createProgramWithIL()
286 cl_program nativeProgram = mNative->getDispatch().clCreateProgramWithBinary( in createProgramWithBinary()
303 const cl_program nativeProgram = mNative->getDispatch().clCreateProgramWithBuiltInKernels( in createProgramWithBuiltInKernels()
326 std::vector<cl_program> nativePrograms; in linkProgram()
334 const cl_program nativeProgram = mNative->getDispatch().clLinkProgram( in linkProgram()
/third_party/opencl-headers/include/
H A Dopencl_wrapper.h41 using clBuildProgramFunc = cl_int (*)(cl_program, cl_uint, const cl_device_id *, const char *,
42 void (*pfn_notify)(cl_program, void *), void *);
78 using clGetProgramBuildInfoFunc = cl_int (*)(cl_program, cl_device_id, cl_program_build_info, size_t, void *, size_t *);
79 using clRetainProgramFunc = cl_int (*)(cl_program program);
87 using clCreateProgramWithBinaryFunc = cl_program (*)(cl_context, cl_uint, const cl_device_id *, const size_t *,
91 using clReleaseProgramFunc = cl_int (*)(cl_program program);
94 using clGetProgramInfoFunc = cl_int (*)(cl_program, cl_program_info, size_t, void *, size_t *);
95 using clCreateKernelFunc = cl_kernel (*)(cl_program, const char *, cl_int *);
103 using clCreateProgramWithSourceFunc = cl_program (*)(cl_context, cl_uint, const char **, const size_t *, cl_int *);
128 using clCreateProgramWithILFunc = cl_program (*)(cl_contex
[all...]
/third_party/opencl-headers/CL/
H A Dcl_function_types.h202 typedef cl_program CL_API_CALL clCreateProgramWithSource_t(
212 typedef cl_program CL_API_CALL clCreateProgramWithBinary_t(
225 cl_program program);
231 cl_program program);
237 cl_program program,
241 void (CL_CALLBACK* pfn_notify)(cl_program program, void* user_data),
248 cl_program program,
258 cl_program program,
269 cl_program program,
277 cl_program progra
[all...]
H A Dcl_icd.h259 typedef cl_program(CL_API_CALL *cl_api_clCreateProgramWithSource)(
263 typedef cl_program(CL_API_CALL *cl_api_clCreateProgramWithBinary)(
271 cl_program(CL_API_CALL *cl_api_clCreateProgramWithBuiltInKernels)(
282 cl_program program) CL_API_SUFFIX__VERSION_1_0;
285 cl_program program) CL_API_SUFFIX__VERSION_1_0;
288 cl_program program, cl_uint num_devices, const cl_device_id *device_list,
290 void(CL_CALLBACK *pfn_notify)(cl_program program, void *user_data),
296 cl_program program, cl_uint num_devices, const cl_device_id *device_list,
298 const cl_program *input_headers, const char **header_include_names,
299 void(CL_CALLBACK *pfn_notify)(cl_program progra
[all...]
H A Dcl.h34 typedef struct _cl_program * cl_program; typedef
1239 extern CL_API_ENTRY cl_program CL_API_CALL
1246 extern CL_API_ENTRY cl_program CL_API_CALL
1257 extern CL_API_ENTRY cl_program CL_API_CALL
1268 extern CL_API_ENTRY cl_program CL_API_CALL
1277 clRetainProgram(cl_program program) CL_API_SUFFIX__VERSION_1_0;
1280 clReleaseProgram(cl_program program) CL_API_SUFFIX__VERSION_1_0;
1283 clBuildProgram(cl_program program,
1287 void (CL_CALLBACK * pfn_notify)(cl_program program,
1294 clCompileProgram(cl_program progra
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationCL_autogen.h106 cl_int ValidateRetainProgram(cl_program program);
107 cl_int ValidateReleaseProgram(cl_program program);
108 cl_int ValidateBuildProgram(cl_program program,
112 void(CL_CALLBACK *pfn_notify)(cl_program program, void *user_data),
114 cl_int ValidateGetProgramInfo(cl_program program,
119 cl_int ValidateGetProgramBuildInfo(cl_program program,
125 cl_int ValidateCreateKernel(cl_program program, const char *kernel_name);
126 cl_int ValidateCreateKernelsInProgram(cl_program program,
399 cl_int ValidateCompileProgram(cl_program program,
404 const cl_program *input_header
[all...]
H A DCLContext.h81 cl_program createProgramWithSource(cl_uint count,
86 cl_program createProgramWithIL(const void *il, size_t length, cl_int &errorCode);
88 cl_program createProgramWithBinary(cl_uint numDevices,
95 cl_program createProgramWithBuiltInKernels(cl_uint numDevices,
100 cl_program linkProgram(cl_uint numDevices,
104 const cl_program *inputPrograms,
H A DCLContext.cpp232 cl_program Context::createProgramWithSource(cl_uint count, in createProgramWithSource()
263 cl_program Context::createProgramWithIL(const void *il, size_t length, cl_int &errorCode) in createProgramWithIL()
268 cl_program Context::createProgramWithBinary(cl_uint numDevices, in createProgramWithBinary()
285 cl_program Context::createProgramWithBuiltInKernels(cl_uint numDevices, in createProgramWithBuiltInKernels()
299 cl_program Context::linkProgram(cl_uint numDevices, in linkProgram()
303 const cl_program *inputPrograms, in linkProgram()
H A DvalidationCL.cpp1081 cl_int ValidateRetainProgram(cl_program program) in ValidateRetainProgram()
1087 cl_int ValidateReleaseProgram(cl_program program) in ValidateReleaseProgram()
1093 cl_int ValidateBuildProgram(cl_program program, in ValidateBuildProgram()
1097 void(CL_CALLBACK *pfn_notify)(cl_program program, void *user_data), in ValidateBuildProgram()
1146 cl_int ValidateGetProgramInfo(cl_program program, in ValidateGetProgramInfo()
1184 cl_int ValidateGetProgramBuildInfo(cl_program program, in ValidateGetProgramBuildInfo()
1224 cl_int ValidateCreateKernel(cl_program program, const char *kernel_name) in ValidateCreateKernel()
1241 cl_int ValidateCreateKernelsInProgram(cl_program program, in ValidateCreateKernelsInProgram()
2912 cl_int ValidateCompileProgram(cl_program program, in ValidateCompileProgram()
2917 const cl_program *input_header in ValidateCompileProgram()
[all...]
/third_party/skia/third_party/externals/angle2/src/libOpenCL/
H A DlibOpenCL_autogen.cpp190 cl_program CL_API_CALL clCreateProgramWithSource(cl_context context, in clCreateProgramWithSource()
200 cl_program CL_API_CALL clCreateProgramWithBinary(cl_context context, in clCreateProgramWithBinary()
212 cl_int CL_API_CALL clRetainProgram(cl_program program) in clRetainProgram()
217 cl_int CL_API_CALL clReleaseProgram(cl_program program) in clReleaseProgram()
222 cl_int CL_API_CALL clBuildProgram(cl_program program, in clBuildProgram()
226 void(CL_CALLBACK *pfn_notify)(cl_program program, in clBuildProgram()
234 cl_int CL_API_CALL clGetProgramInfo(cl_program program, in clGetProgramInfo()
244 cl_int CL_API_CALL clGetProgramBuildInfo(cl_program program, in clGetProgramBuildInfo()
255 cl_kernel CL_API_CALL clCreateKernel(cl_program program, in clCreateKernel()
262 cl_int CL_API_CALL clCreateKernelsInProgram(cl_program progra
[all...]
/third_party/skia/third_party/externals/angle2/include/CL/
H A Dcl_icd.h259 typedef cl_program(CL_API_CALL *cl_api_clCreateProgramWithSource)(
263 typedef cl_program(CL_API_CALL *cl_api_clCreateProgramWithBinary)(
271 cl_program(CL_API_CALL *cl_api_clCreateProgramWithBuiltInKernels)(
282 cl_program program) CL_API_SUFFIX__VERSION_1_0;
285 cl_program program) CL_API_SUFFIX__VERSION_1_0;
288 cl_program program, cl_uint num_devices, const cl_device_id *device_list,
290 void(CL_CALLBACK *pfn_notify)(cl_program program, void *user_data),
296 cl_program program, cl_uint num_devices, const cl_device_id *device_list,
298 const cl_program *input_headers, const char **header_include_names,
299 void(CL_CALLBACK *pfn_notify)(cl_program progra
[all...]
H A Dcl.h34 typedef struct _cl_program * cl_program; typedef
1232 extern CL_API_ENTRY cl_program CL_API_CALL
1239 extern CL_API_ENTRY cl_program CL_API_CALL
1250 extern CL_API_ENTRY cl_program CL_API_CALL
1261 extern CL_API_ENTRY cl_program CL_API_CALL
1270 clRetainProgram(cl_program program) CL_API_SUFFIX__VERSION_1_0;
1273 clReleaseProgram(cl_program program) CL_API_SUFFIX__VERSION_1_0;
1276 clBuildProgram(cl_program program,
1280 void (CL_CALLBACK * pfn_notify)(cl_program program,
1287 clCompileProgram(cl_program progra
[all...]
/third_party/mesa3d/include/CL/
H A Dcl.h34 typedef struct _cl_program * cl_program; typedef
1230 extern CL_API_ENTRY cl_program CL_API_CALL
1237 extern CL_API_ENTRY cl_program CL_API_CALL
1248 extern CL_API_ENTRY cl_program CL_API_CALL
1259 extern CL_API_ENTRY cl_program CL_API_CALL
1268 clRetainProgram(cl_program program) CL_API_SUFFIX__VERSION_1_0;
1271 clReleaseProgram(cl_program program) CL_API_SUFFIX__VERSION_1_0;
1274 clBuildProgram(cl_program program,
1278 void (CL_CALLBACK * pfn_notify)(cl_program program,
1285 clCompileProgram(cl_program progra
[all...]
H A Dcl_icd.h259 typedef CL_API_ENTRY cl_program(CL_API_CALL *cl_api_clCreateProgramWithSource)(
263 typedef CL_API_ENTRY cl_program(CL_API_CALL *cl_api_clCreateProgramWithBinary)(
271 cl_program(CL_API_CALL *cl_api_clCreateProgramWithBuiltInKernels)(
282 cl_program program) CL_API_SUFFIX__VERSION_1_0;
285 cl_program program) CL_API_SUFFIX__VERSION_1_0;
288 cl_program program, cl_uint num_devices, const cl_device_id *device_list,
290 void(CL_CALLBACK *pfn_notify)(cl_program program, void *user_data),
296 cl_program program, cl_uint num_devices, const cl_device_id *device_list,
298 const cl_program *input_headers, const char **header_include_names,
299 void(CL_CALLBACK *pfn_notify)(cl_program progra
[all...]
/third_party/opencl-headers/src/
H A Dopencl_wrapper.cpp351 cl_program clCreateProgramWithSource(cl_context context, cl_uint count, const char **strings, const size_t *lengths, in clCreateProgramWithSource()
361 cl_program clCreateProgramWithBinary(cl_context context, cl_uint num_devices, const cl_device_id *devices_list, in clCreateProgramWithBinary()
372 cl_int clGetProgramInfo(cl_program program, cl_program_info param_name, size_t param_value_size, void *param_value, in clGetProgramInfo()
382 cl_int clGetProgramBuildInfo(cl_program program, cl_device_id device, cl_program_build_info param_name, in clGetProgramBuildInfo()
392 cl_int clRetainProgram(cl_program program) in clRetainProgram()
401 cl_int clReleaseProgram(cl_program program) in clReleaseProgram()
410 cl_int clBuildProgram(cl_program program, cl_uint num_devices, const cl_device_id *device_list, const char *options, in clBuildProgram()
411 void(CL_CALLBACK *pfn_notify)(cl_program program, void *user_data), void *user_data) in clBuildProgram()
420 cl_kernel clCreateKernel(cl_program program, const char *kernelName, cl_int *errcode_ret) in clCreateKernel()
837 cl_program clCreateProgramWithI
[all...]

Completed in 35 milliseconds

12