Home
last modified time | relevance | path

Searched refs:__compare (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/
H A Dcompare146 # include <__compare/common_comparison_category.h>
147 # include <__compare/compare_partial_order_fallback.h>
148 # include <__compare/compare_strong_order_fallback.h>
149 # include <__compare/compare_three_way.h>
150 # include <__compare/compare_three_way_result.h>
151 # include <__compare/compare_weak_order_fallback.h>
152 # include <__compare/is_eq.h>
153 # include <__compare/ordering.h>
154 # include <__compare/partial_order.h>
155 # include <__compare/strong_order.h>
[all …]
H A Dtypeinfo88 int __compare(const type_info& __rhs) const _NOEXCEPT;
95 …_LIBCPP_HIDE_FROM_ABI bool before(const type_info& __arg) const _NOEXCEPT { return __compare(__arg…
105 return __compare(__arg) == 0;
H A Dmodule.modulemap1165 module std_private_compare_common_comparison_category [system] { header "__compare/common_compa…
1166 module std_private_compare_compare_partial_order_fallback [system] { header "__compare/compare_part…
1167 module std_private_compare_compare_strong_order_fallback [system] { header "__compare/compare_stro…
1168 module std_private_compare_compare_three_way [system] { header "__compare/compare_thre…
1169 module std_private_compare_compare_three_way_result [system] { header "__compare/compare_thre…
1170 module std_private_compare_compare_weak_order_fallback [system] { header "__compare/compare_weak…
1171 module std_private_compare_is_eq [system] { header "__compare/is_eq.h" }
1172 module std_private_compare_ordering [system] { header "__compare/ordering.h" }
1173 module std_private_compare_partial_order [system] { header "__compare/partial_orde…
1174 module std_private_compare_strong_order [system] { header "__compare/strong_order…
[all …]
H A Dvariant215 #include <__compare/common_comparison_category.h>
216 #include <__compare/compare_three_way_result.h>
217 #include <__compare/three_way_comparable.h>
H A Doptional181 #include <__compare/compare_three_way_result.h>
182 #include <__compare/three_way_comparable.h>
H A Dtuple213 #include <__compare/common_comparison_category.h>
214 #include <__compare/synth_three_way.h>
H A D__bit_reference19 #include <__compare/ordering.h>
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Dpath.h633 return __lhs.__compare(__rhs.__pn_) == 0;
637 return __lhs.__compare(__rhs.__pn_) != 0;
640 return __lhs.__compare(__rhs.__pn_) < 0;
643 return __lhs.__compare(__rhs.__pn_) <= 0;
646 return __lhs.__compare(__rhs.__pn_) > 0;
649 return __lhs.__compare(__rhs.__pn_) >= 0;
653 return __lhs.__compare(__rhs.__pn_) <=> 0;
780 int __compare(__string_view) const;
792 _LIBCPP_HIDE_FROM_ABI int compare(const path& __p) const noexcept { return __compare(__p.__pn_); }
793 _LIBCPP_HIDE_FROM_ABI int compare(const string_type& __s) const { return __compare(__s); }
[all …]
/freebsd/sys/contrib/ck/include/gcc/arm/
H A Dck_pr.h245 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/contrib/llvm-project/libcxx/src/
H A Dtypeinfo.cpp15 int std::type_info::__compare(const type_info& __rhs) const noexcept { in __compare() function in std::type_info
/freebsd/lib/libc++/
H A Dlibcxx.imp281 { include: [ "<__compare/common_comparison_category.h>", "private", "<compare>", "public" ] },
282 { include: [ "<__compare/compare_partial_order_fallback.h>", "private", "<compare>", "public" ] },
283 { include: [ "<__compare/compare_strong_order_fallback.h>", "private", "<compare>", "public" ] },
284 { include: [ "<__compare/compare_three_way.h>", "private", "<compare>", "public" ] },
285 { include: [ "<__compare/compare_three_way_result.h>", "private", "<compare>", "public" ] },
286 { include: [ "<__compare/compare_weak_order_fallback.h>", "private", "<compare>", "public" ] },
287 { include: [ "<__compare/is_eq.h>", "private", "<compare>", "public" ] },
288 { include: [ "<__compare/ordering.h>", "private", "<compare>", "public" ] },
289 { include: [ "<__compare/partial_order.h>", "private", "<compare>", "public" ] },
290 { include: [ "<__compare/strong_order.h>", "private", "<compare>", "public" ] },
[all …]
H A DMakefile585 CMPDIR= ${CXXINCLUDEDIR}/__compare
600 CMP+= ${HDRDIR}/__compare/${hdr}
/freebsd/etc/mtree/
H A DBSD.include.dist29 __compare
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dpath.cpp347 int path::__compare(string_view_t __s) const { in __compare() function in path