| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | compare | 144 #include <__compare/common_comparison_category.h> 147 #include <__compare/compare_three_way.h> 148 #include <__compare/compare_three_way_result.h> 149 #include <__compare/compare_weak_order_fallback.h> 150 #include <__compare/is_eq.h> 151 #include <__compare/ordering.h> 152 #include <__compare/partial_order.h> 153 #include <__compare/strong_order.h> 154 #include <__compare/synth_three_way.h> 155 #include <__compare/three_way_comparable.h> [all …]
|
| H A D | libcxx.imp | 297 { include: [ "<__compare/common_comparison_category.h>", "private", "<compare>", "public" ] }, 300 { include: [ "<__compare/compare_three_way.h>", "private", "<compare>", "public" ] }, 301 { include: [ "<__compare/compare_three_way_result.h>", "private", "<compare>", "public" ] }, 302 { include: [ "<__compare/compare_weak_order_fallback.h>", "private", "<compare>", "public" ] }, 303 { include: [ "<__compare/is_eq.h>", "private", "<compare>", "public" ] }, 304 { include: [ "<__compare/ordering.h>", "private", "<compare>", "public" ] }, 305 { include: [ "<__compare/partial_order.h>", "private", "<compare>", "public" ] }, 306 { include: [ "<__compare/strong_order.h>", "private", "<compare>", "public" ] }, 307 { include: [ "<__compare/synth_three_way.h>", "private", "<compare>", "public" ] }, 308 { include: [ "<__compare/three_way_comparable.h>", "private", "<compare>", "public" ] }, [all …]
|
| H A D | typeinfo | 90 int __compare(const type_info& __rhs) const _NOEXCEPT; 97 …_LIBCPP_HIDE_FROM_ABI bool before(const type_info& __arg) const _NOEXCEPT { return __compare(__arg… 107 return __compare(__arg) == 0;
|
| H A D | module.modulemap.in | 1186 module std_private_compare_common_comparison_category [system] { header "__compare/common_compa… 1189 module std_private_compare_compare_three_way [system] { header "__compare/compare_thre… 1190 module std_private_compare_compare_three_way_result [system] { header "__compare/compare_thre… 1191 module std_private_compare_compare_weak_order_fallback [system] { header "__compare/compare_weak… 1192 module std_private_compare_is_eq [system] { header "__compare/is_eq.h" } 1193 module std_private_compare_ordering [system] { header "__compare/ordering.h" } 1194 module std_private_compare_partial_order [system] { header "__compare/partial_orde… 1195 module std_private_compare_strong_order [system] { header "__compare/strong_order… 1196 module std_private_compare_synth_three_way [system] { header "__compare/synth_three_… 1197 module std_private_compare_three_way_comparable [system] { header "__compare/three_way_co… [all …]
|
| H A D | variant | 215 #include <__compare/common_comparison_category.h> 216 #include <__compare/compare_three_way_result.h> 217 #include <__compare/three_way_comparable.h>
|
| H A D | functional | 517 #include <__compare/compare_three_way.h>
|
| H A D | optional | 182 #include <__compare/compare_three_way_result.h> 183 #include <__compare/three_way_comparable.h>
|
| H A D | tuple | 209 #include <__compare/common_comparison_category.h> 210 #include <__compare/synth_three_way.h>
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__filesystem/ |
| H A D | path.h | 635 return __lhs.__compare(__rhs.__pn_) == 0; 639 return __lhs.__compare(__rhs.__pn_) != 0; 642 return __lhs.__compare(__rhs.__pn_) < 0; 645 return __lhs.__compare(__rhs.__pn_) <= 0; 648 return __lhs.__compare(__rhs.__pn_) > 0; 651 return __lhs.__compare(__rhs.__pn_) >= 0; 655 return __lhs.__compare(__rhs.__pn_) <=> 0; 782 int __compare(__string_view) const; 795 _LIBCPP_HIDE_FROM_ABI int compare(const string_type& __s) const { return __compare(__s); } 796 _LIBCPP_HIDE_FROM_ABI int compare(__string_view __s) const { return __compare(__s); } [all …]
|
| /freebsd-14.2/sys/contrib/ck/include/gcc/arm/ |
| H A D | ck_pr.h | 245 uint64_t __compare = ((uint64_t)_compare[0]) | ((uint64_t)_compare[1] << 32); local 249 __compare, 289 uint64_t __compare = ((uint64_t)_compare[0]) | ((uint64_t)_compare[1] << 32); in CK_PR_DOUBLE_CAS() local 292 __compare, in CK_PR_DOUBLE_CAS()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/src/ |
| H A D | typeinfo.cpp | 15 int std::type_info::__compare(const type_info& __rhs) const noexcept { in __compare() function in std::type_info
|
| /freebsd-14.2/etc/mtree/ |
| H A D | BSD.include.dist | 33 __compare
|
| /freebsd-14.2/lib/libc++/ |
| H A D | module.modulemap | 1186 module std_private_compare_common_comparison_category [system] { header "__compare/common_compa… 1189 module std_private_compare_compare_three_way [system] { header "__compare/compare_thre… 1190 module std_private_compare_compare_three_way_result [system] { header "__compare/compare_thre… 1191 module std_private_compare_compare_weak_order_fallback [system] { header "__compare/compare_weak… 1192 module std_private_compare_is_eq [system] { header "__compare/is_eq.h" } 1193 module std_private_compare_ordering [system] { header "__compare/ordering.h" } 1194 module std_private_compare_partial_order [system] { header "__compare/partial_orde… 1195 module std_private_compare_strong_order [system] { header "__compare/strong_order… 1196 module std_private_compare_synth_three_way [system] { header "__compare/synth_three_… 1197 module std_private_compare_three_way_comparable [system] { header "__compare/three_way_co… [all …]
|
| H A D | Makefile | 611 CMPDIR= ${CXXINCLUDEDIR}/__compare 626 CMP+= ${HDRDIR}/__compare/${hdr}
|
| /freebsd-14.2/contrib/llvm-project/libcxx/src/filesystem/ |
| H A D | path.cpp | 347 int path::__compare(string_view_t __s) const { in __compare() function in path
|