Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dfunctional.cppm
H A Dfunctional.inc37 using std::greater_equal;
119 using std::ranges::greater_equal;
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__functional/
H A Doperations.h143 struct _LIBCPP_TEMPLATE_VIS greater_equal : __binary_function<_Tp, _Tp, bool> { struct
147 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(greater_equal); argument
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Doperations.h418 struct greater_equal : __binary_function<_Tp, _Tp, bool> {
424 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(greater_equal);
428 struct greater_equal<void> {
H A Dranges_operations.h84 struct greater_equal { struct
/freebsd/contrib/llvm-project/libcxx/include/experimental/
H A Dpropagate_const104 template <class T> struct greater_equal<experimental::propagate_const<T>>;
475 struct greater_equal<experimental::propagate_const<_Tp>> {
481 …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 {
520 struct greater_equal;
H A Dvalarray3145 inline _LIBCPP_HIDE_FROM_ABI __val_expr<_BinaryOp<greater_equal<typename _Expr1::value_type>, _Expr…
3148 typedef _BinaryOp<greater_equal<value_type>, _Expr1, _Expr2> _Op;
3149 return __val_expr<_Op>(_Op(greater_equal<value_type>(), __x, __y));
3154 __val_expr<_BinaryOp<greater_equal<typename _Expr::value_type>, _Expr, __scalar_expr<typename _Expr…
3157 typedef _BinaryOp<greater_equal<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3158 …return __val_expr<_Op>(_Op(greater_equal<value_type>(), __x, __scalar_expr<value_type>(__y, __x.si…
3163 __val_expr<_BinaryOp<greater_equal<typename _Expr::value_type>, __scalar_expr<typename _Expr::value…
3166 typedef _BinaryOp<greater_equal<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3167 …return __val_expr<_Op>(_Op(greater_equal<value_type>(), __scalar_expr<value_type>(__x, __y.size())…
H A Dvariant1570 …return __variant::__visit_value_at(__lhs.index(), __convert_to_bool<greater_equal<>>{}, __lhs, __r…
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dfunctional140 struct greater_equal {
518 struct greater_equal;
H A Dvalarray2971 inline _LIBCPP_HIDE_FROM_ABI __val_expr<_BinaryOp<greater_equal<typename _Expr1::value_type>, _Expr…
2974 typedef _BinaryOp<greater_equal<value_type>, _Expr1, _Expr2> _Op;
2975 return __val_expr<_Op>(_Op(greater_equal<value_type>(), __x, __y));
2980 __val_expr<_BinaryOp<greater_equal<typename _Expr::value_type>, _Expr, __scalar_expr<typename _Expr…
2983 typedef _BinaryOp<greater_equal<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2984 …return __val_expr<_Op>(_Op(greater_equal<value_type>(), __x, __scalar_expr<value_type>(__y, __x.si…
2989 __val_expr<_BinaryOp<greater_equal<typename _Expr::value_type>, __scalar_expr<typename _Expr::value…
2992 typedef _BinaryOp<greater_equal<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2993 …return __val_expr<_Op>(_Op(greater_equal<value_type>(), __scalar_expr<value_type>(__x, __y.size())…
/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.inc1474 SYMBOL(greater_equal, std::, <functional>)
3705 SYMBOL(greater_equal, std::ranges::, <functional>)
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1236 class Ge2Matcher : public PairMatchBase<Ge2Matcher, std::greater_equal<>> {