Lines Matching defs:rhs

661             size_t(const array<size_type, N> &rhs)
664 data_[i] = rhs[i];
1770 Wrapper(const Wrapper<cl_type>& rhs)
1772 object_ = rhs.object_;
1776 Wrapper(Wrapper<cl_type>&& rhs) CL_HPP_NOEXCEPT_
1778 object_ = rhs.object_;
1779 rhs.object_ = NULL;
1782 Wrapper<cl_type>& operator = (const Wrapper<cl_type>& rhs)
1784 if (this != &rhs) {
1786 object_ = rhs.object_;
1792 Wrapper<cl_type>& operator = (Wrapper<cl_type>&& rhs)
1794 if (this != &rhs) {
1796 object_ = rhs.object_;
1797 rhs.object_ = NULL;
1802 Wrapper<cl_type>& operator = (const cl_type &rhs)
1805 object_ = rhs;
1889 Wrapper(const Wrapper<cl_type>& rhs)
1891 object_ = rhs.object_;
1896 Wrapper(Wrapper<cl_type>&& rhs) CL_HPP_NOEXCEPT_
1898 object_ = rhs.object_;
1899 referenceCountable_ = rhs.referenceCountable_;
1900 rhs.object_ = NULL;
1901 rhs.referenceCountable_ = false;
1904 Wrapper<cl_type>& operator = (const Wrapper<cl_type>& rhs)
1906 if (this != &rhs) {
1908 object_ = rhs.object_;
1909 referenceCountable_ = rhs.referenceCountable_;
1915 Wrapper<cl_type>& operator = (Wrapper<cl_type>&& rhs)
1917 if (this != &rhs) {
1919 object_ = rhs.object_;
1920 referenceCountable_ = rhs.referenceCountable_;
1921 rhs.object_ = NULL;
1922 rhs.referenceCountable_ = false;
1927 Wrapper<cl_type>& operator = (const cl_type &rhs)
1930 object_ = rhs;
1970 inline bool operator==(const Wrapper<T> &lhs, const Wrapper<T> &rhs)
1972 return lhs() == rhs();
1976 inline bool operator!=(const Wrapper<T> &lhs, const Wrapper<T> &rhs)
1978 return !operator==(lhs, rhs);
2050 ImageFormat& operator = (const ImageFormat& rhs)
2052 if (this != &rhs) {
2053 this->image_channel_data_type = rhs.image_channel_data_type;
2054 this->image_channel_order = rhs.image_channel_order;
2146 Device& operator = (const cl_device_id& rhs)
2148 detail::Wrapper<cl_type>::operator=(rhs);
2436 Platform& operator = (const cl_platform_id& rhs)
2438 detail::Wrapper<cl_type>::operator=(rhs);
3012 * This effectively transfers ownership of a refcount on the rhs and calls
3015 Context& operator = (const cl_context& rhs)
3017 detail::Wrapper<cl_type>::operator=(rhs);
3154 * This effectively transfers ownership of a refcount on the rhs and calls
3157 Event& operator = (const cl_event& rhs)
3159 detail::Wrapper<cl_type>::operator=(rhs);
3340 * This effectively transfers ownership of a refcount on the rhs and calls
3343 Memory& operator = (const cl_mem& rhs)
3345 detail::Wrapper<cl_type>::operator=(rhs);
3678 inline bool operator==(SVMAllocator const& rhs)
3680 return (context_==rhs.context_);
3947 Buffer& operator = (const cl_mem& rhs)
3949 Memory::operator=(rhs);
4083 BufferD3D10& operator = (const cl_mem& rhs)
4085 Buffer::operator=(rhs);
4172 BufferGL& operator = (const cl_mem& rhs)
4174 Buffer::operator=(rhs);
4269 BufferRenderGL& operator = (const cl_mem& rhs)
4271 Buffer::operator=(rhs);
4340 Image& operator = (const cl_mem& rhs)
4342 Memory::operator=(rhs);
4460 Image1D& operator = (const cl_mem& rhs)
4462 Image::operator=(rhs);
4544 Image1DBuffer& operator = (const cl_mem& rhs)
4546 Image::operator=(rhs);
4633 Image1DArray& operator = (const cl_mem& rhs)
4635 Image::operator=(rhs);
4875 Image2D& operator = (const cl_mem& rhs)
4877 Image::operator=(rhs);
4971 Image2DGL& operator = (const cl_mem& rhs)
4973 Image2D::operator=(rhs);
5064 Image2DArray& operator = (const cl_mem& rhs)
5066 Image::operator=(rhs);
5200 Image3D& operator = (const cl_mem& rhs)
5202 Image::operator=(rhs);
5292 Image3DGL& operator = (const cl_mem& rhs)
5294 Image3D::operator=(rhs);
5373 ImageGL& operator = (const cl_mem& rhs)
5375 Image::operator=(rhs);
5491 Pipe& operator = (const cl_mem& rhs)
5493 Memory::operator=(rhs);
5621 * This effectively transfers ownership of a refcount on the rhs and calls
5624 Sampler& operator = (const cl_sampler& rhs)
5626 detail::Wrapper<cl_type>::operator=(rhs);
5846 * This effectively transfers ownership of a refcount on the rhs and calls
5849 Kernel& operator = (const cl_kernel& rhs)
5851 detail::Wrapper<cl_type>::operator=(rhs);
6548 Program& operator = (const cl_program& rhs)
6550 detail::Wrapper<cl_type>::operator=(rhs);
6974 inline QueueProperties operator|(QueueProperties lhs, QueueProperties rhs)
6976 return static_cast<QueueProperties>(static_cast<cl_command_queue_properties>(lhs) | static_cast<cl_command_queue_properties>(rhs));
7444 CommandQueue& operator = (const cl_command_queue& rhs)
7446 detail::Wrapper<cl_type>::operator=(rhs);
8724 inline DeviceQueueProperties operator|(DeviceQueueProperties lhs, DeviceQueueProperties rhs)
8726 return static_cast<DeviceQueueProperties>(static_cast<cl_command_queue_properties>(lhs) | static_cast<cl_command_queue_properties>(rhs));
8824 DeviceCommandQueue& operator = (const cl_command_queue& rhs)
8826 detail::Wrapper<cl_type>::operator=(rhs);