/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | tgmath.h | 50 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ argument 51 __tg_promote(__y))) 52 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument 53 __tg_promote(__y) + \ 466 __tg_pow(float __x, float __y) {return powf(__x, __y);} in __tg_pow() argument 470 __tg_pow(double __x, double __y) {return pow(__x, __y);} in __tg_pow() argument 474 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} in __tg_pow() argument 478 __tg_pow(float _Complex __x, float _Complex __y) {return cpowf(__x, __y);} in __tg_pow() argument 482 __tg_pow(double _Complex __x, double _Complex __y) {return cpow(__x, __y);} in __tg_pow() argument 486 __tg_pow(long double _Complex __x, long double _Complex __y) in __tg_pow() argument [all …]
|
H A D | __clang_cuda_texture_intrinsics.h | 339 __IMPL_S("__tex2D_v2", "__tex2D_rmnf_v2", (float __x, float __y), "tex.2d.v4", 340 "f32", "{%0, %1, %2, %3}, [%4, {%5, %6}];", ("f"(__x), "f"(__y))); 343 __IMPL_S3S("__itex2D_sparse", (float __x, float __y, unsigned char *__ir), 349 ("f"(__x), "f"(__y))); 352 (float __x, float __y, const float2 *__dPdx, const float2 *__dPdy), 355 ("f"(__x), "f"(__y), "f"(__dPdx->x), "f"(__dPdx->y), "f"(__dPdy->x), 360 (float __x, float __y, const float2 *__dPdx, const float2 *__dPdy, 367 ("f"(__x), "f"(__y), "f"(__dPdx->x), "f"(__dPdx->y), "f"(__dPdy->x), 371 (float __x, float __y, int __layer), "tex.a2d.v4", "f32", 373 ("r"(__layer), "f"(__x), "f"(__y))); [all …]
|
H A D | __clang_cuda_cmath.h | 48 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); } in atan2() argument 55 __DEVICE__ float fmod(float __x, float __y) { return ::fmodf(__x, __y); } in fmod() argument 117 __DEVICE__ bool isgreater(float __x, float __y) { in isgreater() argument 118 return __builtin_isgreater(__x, __y); in isgreater() 120 __DEVICE__ bool isgreater(double __x, double __y) { in isgreater() argument 121 return __builtin_isgreater(__x, __y); in isgreater() 123 __DEVICE__ bool isgreaterequal(float __x, float __y) { in isgreaterequal() argument 124 return __builtin_isgreaterequal(__x, __y); in isgreaterequal() 126 __DEVICE__ bool isgreaterequal(double __x, double __y) { in isgreaterequal() argument 127 return __builtin_isgreaterequal(__x, __y); in isgreaterequal() [all …]
|
H A D | __clang_hip_cmath.h | 48 __DEVICE__ __CONSTEXPR__ float fma(float __x, float __y, float __z) { in fma() argument 49 return ::fmaf(__x, __y, __z); in fma() 107 __DEVICE__ __CONSTEXPR__ bool isgreater(float __x, float __y) { in isgreater() argument 108 return __builtin_isgreater(__x, __y); in isgreater() 110 __DEVICE__ __CONSTEXPR__ bool isgreater(double __x, double __y) { in isgreater() argument 111 return __builtin_isgreater(__x, __y); in isgreater() 113 __DEVICE__ __CONSTEXPR__ bool isgreaterequal(float __x, float __y) { in isgreaterequal() argument 114 return __builtin_isgreaterequal(__x, __y); in isgreaterequal() 116 __DEVICE__ __CONSTEXPR__ bool isgreaterequal(double __x, double __y) { in isgreaterequal() argument 117 return __builtin_isgreaterequal(__x, __y); in isgreaterequal() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | leap_second.h | 55 …PP_HIDE_FROM_ABI inline constexpr bool operator==(const leap_second& __x, const leap_second& __y) { 56 return __x.date() == __y.date(); 59 …_ABI inline constexpr strong_ordering operator<=>(const leap_second& __x, const leap_second& __y) { 60 return __x.date() <=> __y.date(); 64 …P_HIDE_FROM_ABI constexpr bool operator==(const leap_second& __x, const sys_time<_Duration>& __y) { 65 return __x.date() == __y; 69 …PP_HIDE_FROM_ABI constexpr bool operator<(const leap_second& __x, const sys_time<_Duration>& __y) { 70 return __x.date() < __y; 74 …PP_HIDE_FROM_ABI constexpr bool operator<(const sys_time<_Duration>& __x, const leap_second& __y) { 75 return __x < __y.date(); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__thread/ |
H A D | id.h | 44 …__lt_impl(__thread_id __x, __thread_id __y) _NOEXCEPT { // id==0 is always less than any other thr… 46 return __y.__id_ != 0; 47 if (__y.__id_ == 0) 49 return __libcpp_thread_id_less(__x.__id_, __y.__id_); 57 friend _LIBCPP_HIDE_FROM_ABI bool operator==(__thread_id __x, __thread_id __y) _NOEXCEPT; 59 friend _LIBCPP_HIDE_FROM_ABI bool operator<(__thread_id __x, __thread_id __y) _NOEXCEPT; 61 …friend _LIBCPP_HIDE_FROM_ABI strong_ordering operator<=>(__thread_id __x, __thread_id __y) noexcep… 78 inline _LIBCPP_HIDE_FROM_ABI bool operator==(__thread_id __x, __thread_id __y) _NOEXCEPT { 81 return __y.__id_ == 0; 82 if (__y.__id_ == 0) [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__math/ |
H A D | hypot.h | 35 … _LIBCPP_HIDE_FROM_ABI float hypot(float __x, float __y) _NOEXCEPT { return __builtin_hypotf(__x, … in hypot() argument 38 _LIBCPP_HIDE_FROM_ABI double hypot(double __x, double __y) _NOEXCEPT { in hypot() argument 39 return __builtin_hypot(__x, __y); in hypot() 42 inline _LIBCPP_HIDE_FROM_ABI long double hypot(long double __x, long double __y) _NOEXCEPT { in hypot() argument 43 return __builtin_hypotl(__x, __y); in hypot() 47 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type hypot(_A1 __x, _A2 __y) _NOEXCEPT { in hypot() argument 50 return __math::hypot((__result_type)__x, (__result_type)__y); in hypot() 59 _LIBCPP_HIDE_FROM_ABI _Real __hypot(_Real __x, _Real __y, _Real __z) { in __hypot() argument 66 …const _Real __max_abs = std::max(__math::fabs(__x), std::max(__math::fabs(__y), __math::fabs(__z))… in __hypot() 76 __y *= __scale; in __hypot() [all …]
|
H A D | exponential_functions.h | 113 …LIBCPP_HIDE_FROM_ABI float scalbln(float __x, long __y) _NOEXCEPT { return __builtin_scalblnf(__x,… in scalbln() argument 116 _LIBCPP_HIDE_FROM_ABI double scalbln(double __x, long __y) _NOEXCEPT { in scalbln() argument 117 return __builtin_scalbln(__x, __y); in scalbln() 120 inline _LIBCPP_HIDE_FROM_ABI long double scalbln(long double __x, long __y) _NOEXCEPT { in scalbln() argument 121 return __builtin_scalblnl(__x, __y); in scalbln() 125 inline _LIBCPP_HIDE_FROM_ABI double scalbln(_A1 __x, long __y) _NOEXCEPT { in scalbln() argument 126 return __builtin_scalbln((double)__x, __y); in scalbln() 131 … _LIBCPP_HIDE_FROM_ABI float scalbn(float __x, int __y) _NOEXCEPT { return __builtin_scalbnf(__x, … in scalbn() argument 134 _LIBCPP_HIDE_FROM_ABI double scalbn(double __x, int __y) _NOEXCEPT { in scalbn() argument 135 return __builtin_scalbn(__x, __y); in scalbn() [all …]
|
H A D | remainder.h | 29 …PP_HIDE_FROM_ABI float remainder(float __x, float __y) _NOEXCEPT { return __builtin_remainderf(__x… in remainder() argument 32 _LIBCPP_HIDE_FROM_ABI double remainder(double __x, double __y) _NOEXCEPT { in remainder() argument 33 return __builtin_remainder(__x, __y); in remainder() 36 inline _LIBCPP_HIDE_FROM_ABI long double remainder(long double __x, long double __y) _NOEXCEPT { in remainder() argument 37 return __builtin_remainderl(__x, __y); in remainder() 41 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type remainder(_A1 __x, _A2 __y) _NOEXCE… in remainder() argument 44 return __math::remainder((__result_type)__x, (__result_type)__y); in remainder() 49 inline _LIBCPP_HIDE_FROM_ABI float remquo(float __x, float __y, int* __z) _NOEXCEPT { in remquo() argument 50 return __builtin_remquof(__x, __y, __z); in remquo() 54 _LIBCPP_HIDE_FROM_ABI double remquo(double __x, double __y, int* __z) _NOEXCEPT { in remquo() argument [all …]
|
H A D | min_max.h | 28 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI float fmax(float __x, float __y) _NOEXCEPT { in fmax() argument 29 return __builtin_fmaxf(__x, __y); in fmax() 33 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double fmax(double __x, double __y) _NOEXCEPT { in fmax() argument 34 return __builtin_fmax(__x, __y); in fmax() 37 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI long double fmax(long double __x, long double __y) _… in fmax() argument 38 return __builtin_fmaxl(__x, __y); in fmax() 42 … inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fmax(_A1 __x, _A2 __y) _NOEXCEPT { in fmax() argument 45 return __math::fmax((__result_type)__x, (__result_type)__y); in fmax() 50 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI float fmin(float __x, float __y) _NOEXCEPT { in fmin() argument 51 return __builtin_fminf(__x, __y); in fmin() [all …]
|
H A D | modulo.h | 28 …e _LIBCPP_HIDE_FROM_ABI float fmod(float __x, float __y) _NOEXCEPT { return __builtin_fmodf(__x, _… in fmod() argument 31 _LIBCPP_HIDE_FROM_ABI double fmod(double __x, double __y) _NOEXCEPT { in fmod() argument 32 return __builtin_fmod(__x, __y); in fmod() 35 inline _LIBCPP_HIDE_FROM_ABI long double fmod(long double __x, long double __y) _NOEXCEPT { in fmod() argument 36 return __builtin_fmodl(__x, __y); in fmod() 40 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fmod(_A1 __x, _A2 __y) _NOEXCEPT { in fmod() argument 43 return __math::fmod((__result_type)__x, (__result_type)__y); in fmod() 48 … _LIBCPP_HIDE_FROM_ABI float modf(float __x, float* __y) _NOEXCEPT { return __builtin_modff(__x, _… in modf() argument 51 _LIBCPP_HIDE_FROM_ABI double modf(double __x, double* __y) _NOEXCEPT { in modf() argument 52 return __builtin_modf(__x, __y); in modf() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__system_error/ |
H A D | error_code.h | 92 inline _LIBCPP_HIDE_FROM_ABI bool operator==(const error_code& __x, const error_code& __y) _NOEXCEPT { in make_error_code() 93 return __x.category() == __y.category() && __x.value() == __y.value(); 96 inline _LIBCPP_HIDE_FROM_ABI bool operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT { 97 return __x.category().equivalent(__x.value(), __y) || __y.category().equivalent(__x, __y.value()); 101 inline _LIBCPP_HIDE_FROM_ABI bool operator==(const error_condition& __x, const error_code& __y) _NOEXCEPT { 102 return __y == __x; 108 inline _LIBCPP_HIDE_FROM_ABI bool operator!=(const error_code& __x, const error_code& __y) _NOEXCEP [all...] |
H A D | error_condition.h | 96 inline _LIBCPP_HIDE_FROM_ABI bool operator==(const error_condition& __x, const error_condition& __y) _NOEXCEPT { 97 return __x.category() == __y.category() && __x.value() == __y.value(); 102 inline _LIBCPP_HIDE_FROM_ABI bool operator!=(const error_condition& __x, const error_condition& __y) _NOEXCEPT { 103 return !(__x == __y); 106 inline _LIBCPP_HIDE_FROM_ABI bool operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT { 107 return __x.category() < __y.category() || (__x.category() == __y.category() && __x.value() < __y.value()); 113 operator<=>(const error_condition& __x, const error_condition& __y) noexcep [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | wrap_iter.h | 114 operator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT { 115 return __x.base() == __y.base(); 120 operator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT { 121 return __x.base() == __y.base(); 126 operator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT { 127 return __x.base() < __y.base(); 132 operator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT { 133 return __x.base() < __y.base(); 139 operator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT { 140 return !(__x == __y); [all …]
|
H A D | move_iterator.h | 214 …_HIDE_FROM_ABI constexpr bool operator==(const move_iterator& __x, const move_sentinel<_Sent>& __y) 217 return __x.base() == __y.base(); 222 operator-(const move_sentinel<_Sent>& __x, const move_iterator& __y) { 223 return __x.base() - __y.base(); 228 operator-(const move_iterator& __x, const move_sentinel<_Sent>& __y) { 229 return __x.base() - __y.base(); 240 …const move_iterator<_It2>& __y) noexcept(noexcept(ranges::iter_swap(__x.__current_, __y.__current_… 241 return ranges::iter_swap(__x.__current_, __y.__current_); 255 operator==(const move_iterator<_Iter1>& __x, const move_iterator<_Iter2>& __y) { 256 return __x.base() == __y.base(); [all …]
|
H A D | reverse_iterator.h | 194 iter_swap(const reverse_iterator& __x, const reverse_iterator<_Iter2>& __y) noexcept( in iter_swap() argument 198 auto __ytmp = __y.base(); in iter_swap() 206 operator==(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 209 { __x.base() == __y.base() } -> convertible_to<bool>; 213 return __x.base() == __y.base(); 218 operator<(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 221 { __x.base() > __y.base() } -> convertible_to<bool>; 225 return __x.base() > __y.base(); 230 operator!=(const reverse_iterator<_Iter1>& __x, const reverse_iterator<_Iter2>& __y) 233 { __x.base() != __y.base() } -> convertible_to<bool>; [all …]
|
H A D | iter_swap.h | 45 …m<remove_cvref_t<_T1>> || __class_or_enum<remove_cvref_t<_T2>>) && requires(_T1&& __x, _T2&& __y) { in requires() argument 47 iter_swap(std::forward<_T1>(__x), std::forward<_T2>(__y)); in requires() 59 _LIBCPP_HIDE_FROM_ABI constexpr void operator()(_T1&& __x, _T2&& __y) const in operator() 60 noexcept(noexcept(iter_swap(std::forward<_T1>(__x), std::forward<_T2>(__y)))) { in operator() 61 (void)iter_swap(std::forward<_T1>(__x), std::forward<_T2>(__y)); in operator() 67 _LIBCPP_HIDE_FROM_ABI constexpr void operator()(_T1&& __x, _T2&& __y) const in operator() 68 noexcept(noexcept(ranges::swap(*std::forward<_T1>(__x), *std::forward<_T2>(__y)))) { in operator() 69 ranges::swap(*std::forward<_T1>(__x), *std::forward<_T2>(__y)); in operator() 77 _LIBCPP_HIDE_FROM_ABI constexpr void operator()(_T1&& __x, _T2&& __y) const in operator() 78 noexcept(noexcept(iter_value_t<_T2>(ranges::iter_move(__y))) && // in operator() [all …]
|
H A D | bounded_iter.h | 192 operator-(__bounded_iter const& __x, __bounded_iter const& __y) _NOEXCEPT { 193 return __x.__current_ - __y.__current_; 203 operator==(__bounded_iter const& __x, __bounded_iter const& __y) _NOEXCEPT { 204 return __x.__current_ == __y.__current_; 209 operator!=(__bounded_iter const& __x, __bounded_iter const& __y) _NOEXCEPT { 210 return __x.__current_ != __y.__current_; 216 operator<(__bounded_iter const& __x, __bounded_iter const& __y) _NOEXCEPT { 217 return __x.__current_ < __y.__current_; 220 operator>(__bounded_iter const& __x, __bounded_iter const& __y) _NOEXCEPT { 221 return __x.__current_ > __y.__current_; [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__numeric/ |
H A D | saturation_arithmetic.h | 31 _LIBCPP_HIDE_FROM_ABI constexpr _Tp __add_sat(_Tp __x, _Tp __y) noexcept { in __add_sat() argument 32 if (_Tp __sum; !__builtin_add_overflow(__x, __y, &__sum)) in __add_sat() 49 _LIBCPP_HIDE_FROM_ABI constexpr _Tp __sub_sat(_Tp __x, _Tp __y) noexcept { in __sub_sat() argument 50 if (_Tp __sub; !__builtin_sub_overflow(__x, __y, &__sub)) in __sub_sat() 68 _LIBCPP_HIDE_FROM_ABI constexpr _Tp __mul_sat(_Tp __x, _Tp __y) noexcept { in __mul_sat() argument 69 if (_Tp __mul; !__builtin_mul_overflow(__x, __y, &__mul)) in __mul_sat() 76 if ((__x > 0 && __y > 0) || (__x < 0 && __y < 0)) in __mul_sat() 84 _LIBCPP_HIDE_FROM_ABI constexpr _Tp __div_sat(_Tp __x, _Tp __y) noexcept { in __div_sat() argument 85 _LIBCPP_ASSERT_UNCATEGORIZED(__y != 0, "Division by 0 is undefined"); in __div_sat() 87 return __x / __y; in __div_sat() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | reference_wrapper.h | 75 …LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(reference_wrapper __x, reference_wrapper __y) 77 { __x.get() == __y.get() } -> __boolean_testable; 80 return __x.get() == __y.get(); 83 _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(reference_wrapper __x, const _Tp& __y) 85 { __x.get() == __y } -> __boolean_testable; 88 return __x.get() == __y; 91 …_FROM_ABI friend constexpr bool operator==(reference_wrapper __x, reference_wrapper<const _Tp> __y) 93 { __x.get() == __y.get() } -> __boolean_testable; 96 return __x.get() == __y.get(); 99 …IBCPP_HIDE_FROM_ABI friend constexpr auto operator<=>(reference_wrapper __x, reference_wrapper __y) [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
H A D | chars_format.h | 30 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format operator&(chars_format __x, chars_format __y) { 31 return chars_format(std::__to_underlying(__x) & std::__to_underlying(__y)); 34 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format operator|(chars_format __x, chars_format __y) { 35 return chars_format(std::__to_underlying(__x) | std::__to_underlying(__y)); 38 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format operator^(chars_format __x, chars_format __y) { 39 return chars_format(std::__to_underlying(__x) ^ std::__to_underlying(__y)); 42 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format& operator&=(chars_format& __x, chars_format __y… 43 __x = __x & __y; 47 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format& operator|=(chars_format& __x, chars_format __y… 48 __x = __x | __y; [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | typeindex | 66 _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {} 68 …LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y… 70 …LIBCPP_HIDE_FROM_ABI bool operator!=(const type_index& __y) const _NOEXCEPT { return *__t_ != *__y… 72 …IBCPP_HIDE_FROM_ABI bool operator<(const type_index& __y) const _NOEXCEPT { return __t_->before(*_… 73 …_LIBCPP_HIDE_FROM_ABI bool operator<=(const type_index& __y) const _NOEXCEPT { return !__y.__t_->b… 74 …_LIBCPP_HIDE_FROM_ABI bool operator>(const type_index& __y) const _NOEXCEPT { return __y.__t_->bef… 75 …CPP_HIDE_FROM_ABI bool operator>=(const type_index& __y) const _NOEXCEPT { return !__t_->before(*_… 77 _LIBCPP_HIDE_FROM_ABI strong_ordering operator<=>(const type_index& __y) const noexcept { 78 if (*__t_ == *__y.__t_) 80 if (__t_->before(*__y.__t_))
|
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | subtract_with_carry_engine.h | 36 const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __y); 40 const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __y); 109 const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __y); 113 const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __y); 202 const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __y) { in seed() 203 if (__x.__c_ != __y.__c_) in seed() 205 if (__x.__i_ == __y.__i_) in seed() 206 return std::equal(__x.__x_, __x.__x_ + _Rp, __y.__x_); in seed() 207 if (__x.__i_ == 0 || __y.__i_ == 0) { 208 size_t __j = std::min(_Rp - __x.__i_, _Rp - __y [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__utility/ |
H A D | rel_ops.h | 23 …_LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_HIDE_FROM_ABI bool operator!=(const _Tp& __x, const _Tp& __y) { 24 return !(__x == __y); 28 … _LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_HIDE_FROM_ABI bool operator>(const _Tp& __x, const _Tp& __y) { 29 return __y < __x; 33 …_LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_HIDE_FROM_ABI bool operator<=(const _Tp& __x, const _Tp& __y) { 34 return !(__y < __x); 38 …_LIBCPP_DEPRECATED_IN_CXX20 _LIBCPP_HIDE_FROM_ABI bool operator>=(const _Tp& __x, const _Tp& __y) { 39 return !(__x < __y);
|
/freebsd/contrib/llvm-project/libcxx/include/__ranges/ |
H A D | elements_view.h | 270 …LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(const __iterator& __x, const __iterator& __y) 273 return __x.__current_ == __y.__current_; 276 …_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator<(const __iterator& __x, const __iterator& __y) 279 return __x.__current_ < __y.__current_; 282 …_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator>(const __iterator& __x, const __iterator& __y) 285 return __y < __x; 288 …LIBCPP_HIDE_FROM_ABI friend constexpr bool operator<=(const __iterator& __x, const __iterator& __y) 291 return !(__y < __x); 294 …LIBCPP_HIDE_FROM_ABI friend constexpr bool operator>=(const __iterator& __x, const __iterator& __y) 297 return !(__x < __y); [all …]
|