Lines Matching refs:__rhs
666 bitset& operator&=(const bitset& __rhs) _NOEXCEPT;
667 bitset& operator|=(const bitset& __rhs) _NOEXCEPT;
668 bitset& operator^=(const bitset& __rhs) _NOEXCEPT;
698 bool operator==(const bitset& __rhs) const _NOEXCEPT;
699 bool operator!=(const bitset& __rhs) const _NOEXCEPT;
779 bitset<_Size>::operator&=(const bitset& __rhs) _NOEXCEPT
781 base::operator&=(__rhs);
788 bitset<_Size>::operator|=(const bitset& __rhs) _NOEXCEPT
790 base::operator|=(__rhs);
797 bitset<_Size>::operator^=(const bitset& __rhs) _NOEXCEPT
799 base::operator^=(__rhs);
970 bitset<_Size>::operator==(const bitset& __rhs) const _NOEXCEPT
972 return _VSTD::equal(base::__make_iter(0), base::__make_iter(_Size), __rhs.__make_iter(0));
978 bitset<_Size>::operator!=(const bitset& __rhs) const _NOEXCEPT
980 return !(*this == __rhs);