Home
last modified time | relevance | path

Searched refs:greater_equal (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dfunctional.cppm
H A Dfunctional.inc33 using std::greater_equal;
115 using std::ranges::greater_equal;
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Dranges_operations.h84 struct greater_equal { struct
H A Doperations.h414 struct _LIBCPP_TEMPLATE_VIS greater_equal : __binary_function<_Tp, _Tp, bool> {
420 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(greater_equal);
424 struct _LIBCPP_TEMPLATE_VIS greater_equal<void> {
/freebsd/contrib/llvm-project/libcxx/include/experimental/
H A Dpropagate_const104 template <class T> struct greater_equal<experimental::propagate_const<T>>;
470 struct greater_equal<experimental::propagate_const<_Tp>> {
476 …return std::greater_equal<_Tp>()(experimental::get_underlying(__pc1), experimental::get_underlying…
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-matchers.h768 : public ComparisonBase<GeMatcher<Rhs>, Rhs, std::greater_equal<>> {
771 : ComparisonBase<GeMatcher<Rhs>, Rhs, std::greater_equal<>>(rhs) {}
/freebsd/contrib/llvm-project/libcxx/include/
H A Dfunctional140 struct greater_equal {
518 struct greater_equal;
H A Dvalarray3137 inline _LIBCPP_HIDE_FROM_ABI __val_expr<_BinaryOp<greater_equal<typename _Expr1::value_type>, _Expr…
3140 typedef _BinaryOp<greater_equal<value_type>, _Expr1, _Expr2> _Op;
3141 return __val_expr<_Op>(_Op(greater_equal<value_type>(), __x, __y));
3146 __val_expr<_BinaryOp<greater_equal<typename _Expr::value_type>, _Expr, __scalar_expr<typename _Expr…
3149 typedef _BinaryOp<greater_equal<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3150 …return __val_expr<_Op>(_Op(greater_equal<value_type>(), __x, __scalar_expr<value_type>(__y, __x.si…
3155 __val_expr<_BinaryOp<greater_equal<typename _Expr::value_type>, __scalar_expr<typename _Expr::value…
3158 typedef _BinaryOp<greater_equal<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3159 …return __val_expr<_Op>(_Op(greater_equal<value_type>(), __scalar_expr<value_type>(__x, __y.size())…
H A Dvariant1560 …return __variant::__visit_value_at(__lhs.index(), __convert_to_bool<greater_equal<>>{}, __lhs, __r…
/freebsd/usr.bin/dtc/
H A Dinput_buffer.cc818 expr = new binary_operator<8, std::greater_equal<valty>>(l, ">="); in parse_binary_expression()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1448 SYMBOL(greater_equal, std::, <functional>)
3615 SYMBOL(greater_equal, std::ranges::, <functional>)
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1224 class Ge2Matcher : public PairMatchBase<Ge2Matcher, std::greater_equal<>> {