| /third_party/mesa3d/src/gallium/frontends/clover/api/ |
| D | program.cpp | 46 build_notifier(cl_program prog, in build_notifier() 47 void (*notifer)(cl_program, void *), void *data) : in build_notifier() argument 56 cl_program prog_; 57 void (*notifer)(cl_program, void *); 64 void (*pfn_notify)(cl_program, void *), in validate_build_common() argument 102 CLOVER_API cl_program 128 CLOVER_API cl_program 183 cl_program 217 CLOVER_API cl_program 225 CLOVER_API cl_program [all …]
|
| D | invalid.cpp | 88 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()
|
| /third_party/flutter/skia/third_party/externals/opencl-lib/3-0/include/CL/internal/ |
| D | cl_icd_amd.h | 152 typedef cl_program(CL_API_CALL* clCreateProgramWithSource_fn)( 156 extern CL_API_ENTRY cl_program CL_API_CALL 161 typedef cl_program(CL_API_CALL* clCreateProgramWithILKHR_fn)( 165 typedef cl_program(CL_API_CALL* clCreateProgramWithBinary_fn)( 170 typedef cl_int(CL_API_CALL* clRetainProgram_fn)(cl_program /* program */) 173 typedef cl_int(CL_API_CALL* clReleaseProgram_fn)(cl_program /* program */) 177 cl_program /* program */, cl_uint /* num_devices */, const cl_device_id* /* device_list */, 179 void(CL_CALLBACK* /* pfn_notify */)(cl_program /* program */, void* /* user_data */), 185 cl_program /* program */, cl_program_info /* param_name */, size_t /* param_value_size */, 189 cl_program /* program */, cl_device_id /* device */, cl_program_build_info /* param_name */, [all …]
|
| D | cl_agent_amd.h | 175 cl_program /* program */); 179 cl_program /* program */); 183 cl_program /* program */);
|
| /third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
| D | cl_stubs_autogen.h | 160 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_headers, [all …]
|
| D | entry_points_cl_autogen.h | 100 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 program, [all …]
|
| D | cl_stubs.cpp | 397 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_headers, in CompileProgram() [all …]
|
| D | entry_points_cl_autogen.cpp | 407 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 program, in clGetProgramBuildInfo() [all …]
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/ |
| D | CLProgramCL.h | 21 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()
|
| D | CLProgramCL.cpp | 19 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()
|
| D | CLContextCL.cpp | 257 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/flutter/skia/third_party/externals/opencl-lib/3-0/include/CL/ |
| D | cl.h | 49 typedef struct _cl_program * cl_program; typedef 873 extern CL_API_ENTRY cl_program CL_API_CALL 880 extern CL_API_ENTRY cl_program CL_API_CALL 889 extern CL_API_ENTRY cl_program CL_API_CALL 896 extern CL_API_ENTRY cl_program CL_API_CALL 904 clRetainProgram(cl_program /* program */) CL_API_SUFFIX__VERSION_1_0; 907 clReleaseProgram(cl_program /* program */) CL_API_SUFFIX__VERSION_1_0; 910 clBuildProgram(cl_program /* program */, 914 … void (CL_CALLBACK * /* pfn_notify */)(cl_program /* program */, void * /* user_data */), 918 clCompileProgram(cl_program /* program */, [all …]
|
| /third_party/opencl-headers/include/ |
| D | opencl_wrapper.h | 38 using clBuildProgramFunc = cl_int (*)(cl_program, cl_uint, const cl_device_id *, const char *, 39 void (*pfn_notify)(cl_program, void *), void *); 72 using clGetProgramBuildInfoFunc = cl_int (*)(cl_program, cl_device_id, cl_program_build_info, size_… 73 using clRetainProgramFunc = cl_int (*)(cl_program program); 81 using clCreateProgramWithBinaryFunc = cl_program (*)(cl_context, cl_uint, const cl_device_id *, con… 85 using clReleaseProgramFunc = cl_int (*)(cl_program program); 88 using clGetProgramInfoFunc = cl_int (*)(cl_program, cl_program_info, size_t, void *, size_t *); 89 using clCreateKernelFunc = cl_kernel (*)(cl_program, const char *, cl_int *); 97 using clCreateProgramWithSourceFunc = cl_program (*)(cl_context, cl_uint, const char **, const size… 122 using clCreateProgramWithILFunc = cl_program (*)(cl_context, const void *, size_t, cl_int *);
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| D | validationCL_autogen.h | 106 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_headers, [all …]
|
| D | CLContext.h | 81 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,
|
| D | CLContext.cpp | 232 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()
|
| D | validationCL.cpp | 1081 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_headers, in ValidateCompileProgram() [all …]
|
| /third_party/opencl-headers/CL/ |
| D | cl.h | 34 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 program, [all …]
|
| D | cl_icd.h | 259 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 program, void *user_data), [all …]
|
| /third_party/skia/third_party/externals/angle2/include/CL/ |
| D | cl.h | 34 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 program, [all …]
|
| D | cl_icd.h | 259 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 program, void *user_data), [all …]
|
| /third_party/mesa3d/include/CL/ |
| D | cl.h | 34 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 program, [all …]
|
| D | cl_icd.h | 259 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 program, void *user_data), [all …]
|
| /third_party/skia/third_party/externals/angle2/src/libOpenCL/ |
| D | libOpenCL_autogen.cpp | 190 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 program, in clCreateKernelsInProgram() [all …]
|
| /third_party/opencl-headers/src/ |
| D | opencl_wrapper.cpp | 328 cl_program clCreateProgramWithSource(cl_context context, cl_uint count, const char **strings, const… in clCreateProgramWithSource() 338 cl_program clCreateProgramWithBinary(cl_context context, cl_uint num_devices, const cl_device_id *d… in clCreateProgramWithBinary() 349 cl_int clGetProgramInfo(cl_program program, cl_program_info param_name, size_t param_value_size, vo… in clGetProgramInfo() 359 cl_int clGetProgramBuildInfo(cl_program program, cl_device_id device, cl_program_build_info param_n… in clGetProgramBuildInfo() 369 cl_int clRetainProgram(cl_program program) in clRetainProgram() 378 cl_int clReleaseProgram(cl_program program) in clReleaseProgram() 387 cl_int clBuildProgram(cl_program program, cl_uint num_devices, const cl_device_id *device_list, con… in clBuildProgram() 388 … void(CL_CALLBACK *pfn_notify)(cl_program program, void *user_data), void *user_data) in clBuildProgram() 397 cl_kernel clCreateKernel(cl_program program, const char *kernelName, cl_int *errcode_ret) in clCreateKernel() 799 cl_program clCreateProgramWithIL(cl_context context, const void *il, size_t length, cl_int *ret) in clCreateProgramWithIL()
|