Lines Matching refs:__rhs
681 bitset& operator&=(const bitset& __rhs) _NOEXCEPT;
683 bitset& operator|=(const bitset& __rhs) _NOEXCEPT;
685 bitset& operator^=(const bitset& __rhs) _NOEXCEPT;
726 bool operator==(const bitset& __rhs) const _NOEXCEPT;
728 bool operator!=(const bitset& __rhs) const _NOEXCEPT;
803 bitset<_Size>::operator&=(const bitset& __rhs) _NOEXCEPT
805 base::operator&=(__rhs);
812 bitset<_Size>::operator|=(const bitset& __rhs) _NOEXCEPT
814 base::operator|=(__rhs);
821 bitset<_Size>::operator^=(const bitset& __rhs) _NOEXCEPT
823 base::operator^=(__rhs);
985 bitset<_Size>::operator==(const bitset& __rhs) const _NOEXCEPT
987 return _VSTD::equal(base::__make_iter(0), base::__make_iter(_Size), __rhs.__make_iter(0));
993 bitset<_Size>::operator!=(const bitset& __rhs) const _NOEXCEPT
995 return !(*this == __rhs);