Lines Matching defs:KernelArgumentHandler
5890 struct KernelArgumentHandler<T, typename std::enable_if<!std::is_base_of<cl::Memory, T>::value>::ty… struct
5892 static size_type size(const T&) { return sizeof(T); } in size()
5893 static const T* ptr(const T& value) { return &value; } in ptr()
5899 struct KernelArgumentHandler<T, typename std::enable_if<std::is_base_of<cl::Memory, T>::value>::typ… struct
5901 static size_type size(const T&) { return sizeof(cl_mem); } in size()
5902 static const cl_mem* ptr(const T& value) { return &(value()); } in ptr()
5908 struct KernelArgumentHandler<LocalSpaceArg, void> struct
5910 static size_type size(const LocalSpaceArg& value) { return value.size_; } in size()
5911 static const void* ptr(const LocalSpaceArg&) { return NULL; } in ptr()
9155 struct KernelArgumentHandler<cl::DeviceCommandQueue, void> struct
9157 static size_type size(const cl::DeviceCommandQueue&) { return sizeof(cl_command_queue); } in size()
9158 … static const cl_command_queue* ptr(const cl::DeviceCommandQueue& value) { return &(value()); } in ptr()