/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
H A D | pointer.h | 384 { return (__lhs.get() - __rhs); } in _GLIBCXX_VISIBILITY() 388 { return (__lhs - __rhs.get()); } in _GLIBCXX_VISIBILITY() 393 { return (__lhs.get() - __rhs); } in _GLIBCXX_VISIBILITY() 398 { return (__lhs - __rhs.get()); } in _GLIBCXX_VISIBILITY() 487 { return __lhs.get() <=> __rhs.get(); } in _GLIBCXX_VISIBILITY() 496 { return __lhs.get() OPERATOR __rhs; } \ in _GLIBCXX_VISIBILITY() 501 { return __lhs OPERATOR __rhs.get(); } \ in _GLIBCXX_VISIBILITY() 548 { return __lhs._Tp::operator==(__rhs); } in _GLIBCXX_VISIBILITY() 554 { return __lhs._Tp::operator<(__rhs) || __lhs._Tp::operator==(__rhs); } in _GLIBCXX_VISIBILITY() 566 { return !(__lhs._Tp::operator<(__rhs) || __lhs._Tp::operator==(__rhs)); } in _GLIBCXX_VISIBILITY() [all …]
|
H A D | vstring.h | 2232 operator+(const _CharT* __lhs, in _GLIBCXX_VISIBILITY() 2244 operator+(_CharT __lhs, in _GLIBCXX_VISIBILITY() 2302 operator+(const _CharT* __lhs, in _GLIBCXX_VISIBILITY() 2309 operator+(_CharT __lhs, in _GLIBCXX_VISIBILITY() 2351 __lhs.size())); } in _GLIBCXX_VISIBILITY() 2391 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 2404 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 2417 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 2455 operator<(const _CharT* __lhs, in _GLIBCXX_VISIBILITY() 2495 operator>(const _CharT* __lhs, in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
H A D | pointer.h | 372 { return (__lhs.get() - __rhs); } in _GLIBCXX_VISIBILITY() 376 { return (__lhs - __rhs.get()); } in _GLIBCXX_VISIBILITY() 381 { return (__lhs.get() - __rhs); } in _GLIBCXX_VISIBILITY() 386 { return (__lhs - __rhs.get()); } in _GLIBCXX_VISIBILITY() 475 { return __lhs.get() <=> __rhs.get(); } in _GLIBCXX_VISIBILITY() 484 { return __lhs.get() OPERATOR __rhs; } \ in _GLIBCXX_VISIBILITY() 489 { return __lhs OPERATOR __rhs.get(); } \ in _GLIBCXX_VISIBILITY() 536 { return __lhs._Tp::operator==(__rhs); } in _GLIBCXX_VISIBILITY() 542 { return __lhs._Tp::operator<(__rhs) || __lhs._Tp::operator==(__rhs); } in _GLIBCXX_VISIBILITY() 554 { return !(__lhs._Tp::operator<(__rhs) || __lhs._Tp::operator==(__rhs)); } in _GLIBCXX_VISIBILITY() [all …]
|
H A D | vstring.h | 2233 operator+(const _CharT* __lhs, in _GLIBCXX_VISIBILITY() 2245 operator+(_CharT __lhs, in _GLIBCXX_VISIBILITY() 2303 operator+(const _CharT* __lhs, in _GLIBCXX_VISIBILITY() 2310 operator+(_CharT __lhs, in _GLIBCXX_VISIBILITY() 2352 __lhs.size())); } in _GLIBCXX_VISIBILITY() 2392 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 2405 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 2418 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 2456 operator<(const _CharT* __lhs, in _GLIBCXX_VISIBILITY() 2496 operator>(const _CharT* __lhs, in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/ |
H A D | iterator_tracker.h | 179 { return __lhs.base() == __rhs.base(); } in _GLIBCXX_VISIBILITY() 186 { return __lhs.base() == __rhs.base(); } in _GLIBCXX_VISIBILITY() 193 { return __lhs.base() != __rhs.base(); } in _GLIBCXX_VISIBILITY() 200 { return __lhs.base() != __rhs.base(); } in _GLIBCXX_VISIBILITY() 207 { return __lhs.base() < __rhs.base(); } in _GLIBCXX_VISIBILITY() 214 { return __lhs.base() < __rhs.base(); } in _GLIBCXX_VISIBILITY() 221 { return __lhs.base() <= __rhs.base(); } in _GLIBCXX_VISIBILITY() 235 { return __lhs.base() > __rhs.base(); } in _GLIBCXX_VISIBILITY() 242 { return __lhs.base() > __rhs.base(); } in _GLIBCXX_VISIBILITY() 267 { return __lhs.base() - __rhs.base(); } in _GLIBCXX_VISIBILITY() [all …]
|
H A D | deque | 145 operator==(const deque<_Tp, _Alloc>& __lhs, 147 { return __lhs._M_base() == __rhs._M_base(); } 151 operator!=(const deque<_Tp, _Alloc>& __lhs, 153 { return __lhs._M_base() != __rhs._M_base(); } 157 operator<(const deque<_Tp, _Alloc>& __lhs, 159 { return __lhs._M_base() < __rhs._M_base(); } 163 operator<=(const deque<_Tp, _Alloc>& __lhs, 169 operator>=(const deque<_Tp, _Alloc>& __lhs, 175 operator>(const deque<_Tp, _Alloc>& __lhs, 177 { return __lhs._M_base() > __rhs._M_base(); } [all …]
|
H A D | unordered_base.h | 88 const __detail::_Hash_node<_Value, true>* __lhs, in _GLIBCXX_VISIBILITY() 91 return __lhs->_M_hash_code == __rhs->_M_hash_code in _GLIBCXX_VISIBILITY() 92 && __uc.key_eq()(__lhs->_M_v(), __rhs->_M_v()); in _GLIBCXX_VISIBILITY() 102 const __detail::_Hash_node<_Value, false>* __lhs, in _GLIBCXX_VISIBILITY() 104 { return __uc.key_eq()(__lhs->_M_v(), __rhs->_M_v()); } in _GLIBCXX_VISIBILITY() 115 const __detail::_Hash_node<_Value, true>* __lhs, in _GLIBCXX_VISIBILITY() 118 return __lhs->_M_hash_code == __rhs->_M_hash_code in _GLIBCXX_VISIBILITY() 119 && __uc.key_eq()(__lhs->_M_v().first, __rhs->_M_v().first); in _GLIBCXX_VISIBILITY() 131 const __detail::_Hash_node<_Value, false>* __lhs, in _GLIBCXX_VISIBILITY() 139 const __detail::_Hash_node<_Value, _Cache_hash_code>* __lhs, in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd/external/apache2/llvm/dist/libcxx/include/ |
H A D | chrono | 2057 { return __lhs.month() != __rhs.month() ? __lhs.month() < __rhs.month() : __lhs.day() < __rhs.day()… 2231 { return __lhs.year() != __rhs.year() ? __lhs.year() < __rhs.year() : __lhs.month() < __rhs.month()… 2257 { return (__lhs.year() + __rhs) / __lhs.month(); } 2345 { return __lhs.year() == __rhs.year() && __lhs.month() == __rhs.month() && __lhs.day() == __rhs.day… 2400 { return (__lhs.year()/__lhs.month() + __rhs)/__lhs.day(); } 2412 { return (__lhs.year() + __rhs) / __lhs.month() / __lhs.day(); } 2509 { return (__lhs.year() / __lhs.month() + __rhs) / last; } 2636 { return (__lhs.year() / __lhs.month() + __rhs) / __lhs.weekday_indexed(); } 2648 { return year_month_weekday{__lhs.year() + __rhs, __lhs.month(), __lhs.weekday_indexed()}; } 2730 { return (__lhs.year() / __lhs.month() + __rhs) / __lhs.weekday_last(); } [all …]
|
H A D | cstddef | 94 constexpr byte operator| (byte __lhs, byte __rhs) noexcept 102 constexpr byte& operator|=(byte& __lhs, byte __rhs) noexcept 103 { return __lhs = __lhs | __rhs; } 114 { return __lhs = __lhs & __rhs; } 125 { return __lhs = __lhs ^ __rhs; } 136 operator<<=(byte& __lhs, _Integer __shift) noexcept 137 { return __lhs = __lhs << __shift; } 141 operator<< (byte __lhs, _Integer __shift) noexcept 146 operator>>=(byte& __lhs, _Integer __shift) noexcept 147 { return __lhs = __lhs >> __shift; } [all …]
|
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/ |
H A D | safe_iterator.h | 468 return __lhs.base() == __rhs.base(); 473 operator==(const _Self& __lhs, 486 return __lhs.base() != __rhs.base(); 491 operator!=(const _Self& __lhs, 838 return __lhs.base() < __rhs.base(); 845 return __lhs.base() < __rhs.base(); 852 return __lhs.base() <= __rhs.base(); 866 return __lhs.base() > __rhs.base(); 873 return __lhs.base() > __rhs.base(); 899 return __lhs.base() - __rhs.base(); [all …]
|
H A D | string | 1064 operator+(const _CharT* __lhs, 1067 __glibcxx_check_string(__lhs); 1073 operator+(_CharT __lhs, 1100 operator==(const _CharT* __lhs, 1103 __glibcxx_check_string(__lhs); 1124 operator!=(const _CharT* __lhs, 1148 operator<(const _CharT* __lhs, 1172 operator<=(const _CharT* __lhs, 1196 operator>=(const _CharT* __lhs, 1220 operator>(const _CharT* __lhs, [all …]
|
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/debug/ |
H A D | safe_iterator.h | 473 return __lhs.base() == __rhs.base(); 479 operator==(const _Self& __lhs, 493 return __lhs.base() != __rhs.base(); 499 operator!=(const _Self& __lhs, 850 return __lhs.base() < __rhs.base(); 858 return __lhs.base() < __rhs.base(); 866 return __lhs.base() <= __rhs.base(); 882 return __lhs.base() > __rhs.base(); 890 return __lhs.base() > __rhs.base(); 919 return __lhs.base() - __rhs.base(); [all …]
|
H A D | string | 1073 operator+(const _CharT* __lhs, 1076 __glibcxx_check_string(__lhs); 1082 operator+(_CharT __lhs, 1109 operator==(const _CharT* __lhs, 1112 __glibcxx_check_string(__lhs); 1133 operator!=(const _CharT* __lhs, 1157 operator<(const _CharT* __lhs, 1181 operator<=(const _CharT* __lhs, 1205 operator>=(const _CharT* __lhs, 1229 operator>(const _CharT* __lhs, [all …]
|
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | regex.h | 851 { __lhs.swap(__rhs); } in _GLIBCXX_VISIBILITY() 1133 { return __rhs._M_compare(__lhs.data(), __lhs.size()) == 0; } in _GLIBCXX_VISIBILITY() 1158 { return __rhs._M_compare(__lhs.data(), __lhs.size()) > 0; } in _GLIBCXX_VISIBILITY() 1170 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1182 { return !(__lhs < __rhs); } in _GLIBCXX_VISIBILITY() 1263 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1337 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1431 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1507 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1607 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | regex.h | 882 { __lhs.swap(__rhs); } in _GLIBCXX_VISIBILITY() 1175 { return __rhs._M_compare(__lhs.data(), __lhs.size()) == 0; } in _GLIBCXX_VISIBILITY() 1200 { return __rhs._M_compare(__lhs.data(), __lhs.size()) > 0; } in _GLIBCXX_VISIBILITY() 1212 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1224 { return !(__lhs < __rhs); } in _GLIBCXX_VISIBILITY() 1305 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1379 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1473 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1549 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 1649 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() [all …]
|
H A D | chrono.h | 763 return __cd(__lhs).count() / __cd(__rhs).count(); in _GLIBCXX_VISIBILITY() 807 return __ct(__lhs).count() == __ct(__rhs).count(); in _GLIBCXX_VISIBILITY() 819 return __ct(__lhs).count() < __ct(__rhs).count(); in _GLIBCXX_VISIBILITY() 840 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 848 { return !(__rhs < __lhs); } in _GLIBCXX_VISIBILITY() 855 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() 862 { return !(__lhs < __rhs); } in _GLIBCXX_VISIBILITY() 1161 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 1174 { return !(__rhs < __lhs); } in _GLIBCXX_VISIBILITY() 1180 { return __rhs < __lhs; } in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
H A D | optional | 749 && (!__lhs || *__lhs == *__rhs); 761 return static_cast<bool>(__rhs) && (!__lhs || *__lhs < *__rhs); 783 { return !__lhs; } 823 { return !__lhs; } 844 { return __lhs && *__lhs == __rhs; } 854 { return !__lhs || !(*__lhs == __rhs); } 864 { return !__lhs || *__lhs < __rhs; } 874 { return __lhs && __rhs < *__lhs; } 884 { return !__lhs || !(__rhs < *__lhs); } 894 { return __lhs && !(*__lhs < __rhs); } [all …]
|
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
H A D | optional | 743 && (!__lhs || *__lhs == *__rhs); 755 return static_cast<bool>(__rhs) && (!__lhs || *__lhs < *__rhs); 777 { return !__lhs; } 817 { return !__lhs; } 838 { return __lhs && *__lhs == __rhs; } 848 { return !__lhs || !(*__lhs == __rhs); } 858 { return !__lhs || *__lhs < __rhs; } 868 { return __lhs && __rhs < *__lhs; } 878 { return !__lhs || !(__rhs < *__lhs); } 888 { return __lhs && !(*__lhs < __rhs); } [all …]
|
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
H A D | system_error | 256 && __lhs.value() < __rhs.value())); 344 && __lhs.value() == __rhs.value()); } 351 return (__lhs.category().equivalent(__lhs.value(), __rhs) 361 && __lhs.value() == __rhs.value()); 379 operator<(const error_condition& __lhs, 384 && __lhs.value() < __rhs.value())); 393 || __lhs.category().equivalent(__rhs, __lhs.value())); 399 { return !(__lhs == __rhs); } 405 { return !(__lhs == __rhs); } 411 { return !(__lhs == __rhs); } [all …]
|
H A D | optional | 1018 && (!__lhs || *__lhs == *__rhs); 1027 || (static_cast<bool>(__lhs) && *__lhs != *__rhs); 1035 return static_cast<bool>(__rhs) && (!__lhs || *__lhs < *__rhs); 1043 return static_cast<bool>(__lhs) && (!__rhs || *__lhs > *__rhs); 1051 return !__lhs || (static_cast<bool>(__rhs) && *__lhs <= *__rhs); 1144 { return __lhs && *__lhs == __rhs; } 1156 { return !__lhs || *__lhs != __rhs; } 1168 { return !__lhs || *__lhs < __rhs; } 1180 { return __lhs && *__lhs > __rhs; } 1192 { return !__lhs || *__lhs <= __rhs; } [all …]
|
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
H A D | system_error | 324 && __lhs.value() < __rhs.value())); 447 && __lhs.value() == __rhs.value(); 462 return __lhs.category().equivalent(__lhs.value(), __rhs) 479 && __lhs.value() == __rhs.value(); 502 operator<(const error_condition& __lhs, 507 && __lhs.value() < __rhs.value())); 515 || __lhs.category().equivalent(__rhs, __lhs.value())); 521 { return !(__lhs == __rhs); } 526 { return !(__lhs == __rhs); } 531 { return !(__lhs == __rhs); } [all …]
|
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/decimal/ |
H A D | decimal | 112 _T1 operator _Op(_T2 __lhs, _T3 __rhs); 114 _Tp operator _Op(_Tp __lhs, int __rhs); \ 116 _Tp operator _Op(_Tp __lhs, long __rhs); \ 118 _Tp operator _Op(_Tp __lhs, long long __rhs); \ 120 _Tp operator _Op(int __lhs, _Tp __rhs); \ 122 _Tp operator _Op(long __lhs, _Tp __rhs); \ 124 _Tp operator _Op(long long __lhs, _Tp __rhs); \ 187 bool operator _Op(_Tp __lhs, int __rhs); \ 189 bool operator _Op(_Tp __lhs, long __rhs); \ 193 bool operator _Op(int __lhs, _Tp __rhs); \ [all …]
|
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/decimal/ |
H A D | decimal | 112 _T1 operator _Op(_T2 __lhs, _T3 __rhs); 114 _Tp operator _Op(_Tp __lhs, int __rhs); \ 116 _Tp operator _Op(_Tp __lhs, long __rhs); \ 118 _Tp operator _Op(_Tp __lhs, long long __rhs); \ 120 _Tp operator _Op(int __lhs, _Tp __rhs); \ 122 _Tp operator _Op(long __lhs, _Tp __rhs); \ 124 _Tp operator _Op(long long __lhs, _Tp __rhs); \ 187 bool operator _Op(_Tp __lhs, int __rhs); \ 189 bool operator _Op(_Tp __lhs, long __rhs); \ 193 bool operator _Op(int __lhs, _Tp __rhs); \ [all …]
|
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/ |
H A D | fs_dir.h | 229 operator==(const directory_iterator& __lhs, in _GLIBCXX_VISIBILITY() 246 operator==(const directory_iterator& __lhs, const directory_iterator& __rhs) in _GLIBCXX_VISIBILITY() 248 return !__rhs._M_dir.owner_before(__lhs._M_dir) in _GLIBCXX_VISIBILITY() 249 && !__lhs._M_dir.owner_before(__rhs._M_dir); in _GLIBCXX_VISIBILITY() 254 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 322 operator==(const recursive_directory_iterator& __lhs, in _GLIBCXX_VISIBILITY() 340 operator==(const recursive_directory_iterator& __lhs, in _GLIBCXX_VISIBILITY() 343 return !__rhs._M_dirs.owner_before(__lhs._M_dirs) in _GLIBCXX_VISIBILITY() 344 && !__lhs._M_dirs.owner_before(__rhs._M_dirs); in _GLIBCXX_VISIBILITY() 348 operator!=(const recursive_directory_iterator& __lhs, in _GLIBCXX_VISIBILITY() [all …]
|
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/ |
H A D | fs_dir.h | 229 operator==(const directory_iterator& __lhs, in _GLIBCXX_VISIBILITY() 246 operator==(const directory_iterator& __lhs, const directory_iterator& __rhs) in _GLIBCXX_VISIBILITY() 248 return !__rhs._M_dir.owner_before(__lhs._M_dir) in _GLIBCXX_VISIBILITY() 249 && !__lhs._M_dir.owner_before(__rhs._M_dir); in _GLIBCXX_VISIBILITY() 254 { return !(__lhs == __rhs); } in _GLIBCXX_VISIBILITY() 322 operator==(const recursive_directory_iterator& __lhs, in _GLIBCXX_VISIBILITY() 340 operator==(const recursive_directory_iterator& __lhs, in _GLIBCXX_VISIBILITY() 343 return !__rhs._M_dirs.owner_before(__lhs._M_dirs) in _GLIBCXX_VISIBILITY() 344 && !__lhs._M_dirs.owner_before(__rhs._M_dirs); in _GLIBCXX_VISIBILITY() 348 operator!=(const recursive_directory_iterator& __lhs, in _GLIBCXX_VISIBILITY() [all …]
|