/external/mesa3d/src/gallium/state_trackers/clover/api/ |
D | device.cpp | 73 return scalar_property<cl_device_type>(buf, size, size_ret, dev->type()); in clGetDeviceInfo() 76 return scalar_property<cl_uint>(buf, size, size_ret, dev->vendor_id()); in clGetDeviceInfo() 79 return scalar_property<cl_uint>(buf, size, size_ret, 1); in clGetDeviceInfo() 82 return scalar_property<cl_uint>(buf, size, size_ret, in clGetDeviceInfo() 90 return scalar_property<size_t>(buf, size, size_ret, in clGetDeviceInfo() 94 return scalar_property<cl_uint>(buf, size, size_ret, 16); in clGetDeviceInfo() 97 return scalar_property<cl_uint>(buf, size, size_ret, 8); in clGetDeviceInfo() 100 return scalar_property<cl_uint>(buf, size, size_ret, 4); in clGetDeviceInfo() 103 return scalar_property<cl_uint>(buf, size, size_ret, 2); in clGetDeviceInfo() 106 return scalar_property<cl_uint>(buf, size, size_ret, 4); in clGetDeviceInfo() [all …]
|
D | memory.cpp | 201 return scalar_property<cl_mem_object_type>(buf, size, size_ret, in clGetMemObjectInfo() 205 return scalar_property<cl_mem_flags>(buf, size, size_ret, obj->flags()); in clGetMemObjectInfo() 208 return scalar_property<size_t>(buf, size, size_ret, obj->size()); in clGetMemObjectInfo() 211 return scalar_property<void *>(buf, size, size_ret, obj->host_ptr()); in clGetMemObjectInfo() 214 return scalar_property<cl_uint>(buf, size, size_ret, 0); in clGetMemObjectInfo() 217 return scalar_property<cl_uint>(buf, size, size_ret, obj->ref_count()); in clGetMemObjectInfo() 220 return scalar_property<cl_context>(buf, size, size_ret, &obj->ctx); in clGetMemObjectInfo() 224 return scalar_property<cl_mem>(buf, size, size_ret, in clGetMemObjectInfo() 229 return scalar_property<size_t>(buf, size, size_ret, in clGetMemObjectInfo() 246 return scalar_property<cl_image_format>(buf, size, size_ret, in clGetImageInfo() [all …]
|
D | sampler.cpp | 71 return scalar_property<cl_uint>(buf, size, size_ret, s->ref_count()); in clGetSamplerInfo() 74 return scalar_property<cl_context>(buf, size, size_ret, &s->ctx); in clGetSamplerInfo() 77 return scalar_property<cl_bool>(buf, size, size_ret, s->norm_mode()); in clGetSamplerInfo() 80 return scalar_property<cl_addressing_mode>(buf, size, size_ret, in clGetSamplerInfo() 84 return scalar_property<cl_filter_mode>(buf, size, size_ret, in clGetSamplerInfo()
|
D | queue.cpp | 78 return scalar_property<cl_context>(buf, size, size_ret, &q->ctx); in clGetCommandQueueInfo() 81 return scalar_property<cl_device_id>(buf, size, size_ret, &q->dev); in clGetCommandQueueInfo() 84 return scalar_property<cl_uint>(buf, size, size_ret, q->ref_count()); in clGetCommandQueueInfo() 87 return scalar_property<cl_command_queue_properties>(buf, size, size_ret, in clGetCommandQueueInfo()
|
D | kernel.cpp | 130 return scalar_property<cl_uint>(buf, size, size_ret, in clGetKernelInfo() 134 return scalar_property<cl_uint>(buf, size, size_ret, in clGetKernelInfo() 138 return scalar_property<cl_context>(buf, size, size_ret, in clGetKernelInfo() 142 return scalar_property<cl_program>(buf, size, size_ret, in clGetKernelInfo() 163 return scalar_property<size_t>(buf, size, size_ret, in clGetKernelWorkGroupInfo() 171 return scalar_property<cl_ulong>(buf, size, size_ret, in clGetKernelWorkGroupInfo() 175 return scalar_property<size_t>(buf, size, size_ret, 1); in clGetKernelWorkGroupInfo() 178 return scalar_property<cl_ulong>(buf, size, size_ret, in clGetKernelWorkGroupInfo()
|
D | event.cpp | 98 return scalar_property<cl_command_queue>(buf, size, size_ret, ev->queue()); in clGetEventInfo() 101 return scalar_property<cl_context>(buf, size, size_ret, &ev->ctx); in clGetEventInfo() 104 return scalar_property<cl_command_type>(buf, size, size_ret, ev->command()); in clGetEventInfo() 107 return scalar_property<cl_int>(buf, size, size_ret, ev->status()); in clGetEventInfo() 110 return scalar_property<cl_uint>(buf, size, size_ret, ev->ref_count()); in clGetEventInfo()
|
D | program.cpp | 175 return scalar_property<cl_uint>(buf, size, size_ret, in clGetProgramInfo() 179 return scalar_property<cl_context>(buf, size, size_ret, in clGetProgramInfo() 183 return scalar_property<cl_uint>(buf, size, size_ret, in clGetProgramInfo() 234 return scalar_property<cl_build_status>(buf, size, size_ret, in clGetProgramBuildInfo()
|
D | context.cpp | 105 return scalar_property<cl_uint>(buf, size, size_ret, ctx->ref_count()); in clGetContextInfo() 108 return scalar_property<cl_uint>(buf, size, size_ret, ctx->devs.size()); in clGetContextInfo()
|
D | util.hpp | 83 scalar_property(void *buf, size_t size, size_t *size_ret, T v) { in scalar_property() function
|