Home
last modified time | relevance | path

Searched refs:minmax (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dminmax.h28 minmax(_LIBCPP_LIFETIMEBOUND const _Tp& __a, _LIBCPP_LIFETIMEBOUND const _Tp& __b, _Compare __comp)… in minmax() function
34 minmax(_LIBCPP_LIFETIMEBOUND const _Tp& __a, _LIBCPP_LIFETIMEBOUND const _Tp& __b) { in minmax() function
35 return std::minmax(__a, __b, __less<>()); in minmax()
42 minmax(initializer_list<_Tp> __t, _Compare __comp) { in minmax() function
51 minmax(initializer_list<_Tp> __t) { in minmax() function
52 return std::minmax(__t, __less<>()); in minmax()
H A Dranges_minmax.h165 inline constexpr auto minmax = __minmax::__fn{};
/freebsd/contrib/libucl/src/
H A Ducl_schema.c158 int64_t minmax; in ucl_schema_validate_object() local
202 && ucl_object_toint_safe (elt, &minmax)) { in ucl_schema_validate_object()
203 if (obj->len < minmax) { in ucl_schema_validate_object()
206 obj->len, (unsigned)minmax); in ucl_schema_validate_object()
212 && ucl_object_toint_safe (elt, &minmax)) { in ucl_schema_validate_object()
213 if (obj->len > minmax) { in ucl_schema_validate_object()
216 obj->len, (unsigned)minmax); in ucl_schema_validate_object()
493 int64_t minmax; in ucl_schema_validate_array() local
549 && ucl_object_toint_safe (elt, &minmax)) { in ucl_schema_validate_array()
550 if (obj->len < minmax) { in ucl_schema_validate_array()
[all …]
/freebsd/tests/sys/netgraph/
H A Dvlan_rotate.c257 ATF_TC(minmax);
258 ATF_TC_HEAD(minmax, conf) in ATF_TC_HEAD() argument
263 ATF_TC_BODY(minmax, dummy) in ATF_TC_BODY() argument
332 ATF_TP_ADD_TC(vlan_rotate, minmax); in ATF_TP_ADD_TCS()
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_aggregate.c1426 dtrace_aggdata_t **minmax; local
1445 minmax = dt_zalloc(dtp, (max + 1) * sizeof (dtrace_aggdata_t *));
1447 if (minmax == NULL)
1501 if (minmax[agg->dtagd_varid] == NULL) {
1502 minmax[agg->dtagd_varid] = aggdata;
1509 if (minbin < minmax[agg->dtagd_varid]->dtada_minbin)
1510 minmax[agg->dtagd_varid]->dtada_minbin = minbin;
1512 if (maxbin > minmax[agg->dtagd_varid]->dtada_maxbin)
1513 minmax[agg->dtagd_varid]->dtada_maxbin = maxbin;
1523 if ((mm = minmax[agg->dtagd_varid]) == NULL || aggdata == mm)
[all …]
/freebsd/sys/dev/cxgbe/
H A Dt4_sched.c53 set_sched_class_config(struct adapter *sc, int minmax) in set_sched_class_config() argument
57 if (minmax < 0) in set_sched_class_config()
66 rc = -t4_sched_config(sc, FW_SCHED_TYPE_PKTSCHED, minmax, 1); in set_sched_class_config()
309 return (set_sched_class_config(sc, p->u.config.minmax)); in t4_set_sched_class()
H A Dt4_ioctl.h277 int8_t minmax; /* minmax enable */ member
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dalgorithm.cppm
H A Dalgorithm.inc561 using std::minmax;
566 using std::ranges::minmax;
/freebsd/contrib/llvm-project/libcxx/include/
H A Dalgorithm219minmax(const T& a, const T& b, Comp comp = {}, Proj proj = {}); …
224minmax(initializer_list<T> r, Comp comp = {}, Proj proj = {}); …
230minmax(R&& r, Comp comp = {}, Proj proj = {}); …
1767 minmax(const T& a, const T& b);
1771 minmax(const T& a, const T& b, Compare comp);
1775 minmax(initializer_list<T> t);
1779 minmax(initializer_list<T> t, Compare comp);
1862 #include <__algorithm/minmax.h>
H A Dmodule.modulemap697 header "__algorithm/minmax.h"
/freebsd/usr.sbin/cxgbetool/
H A Dcxgbetool.c2770 op.u.config.minmax = -1; in sched_class()
2807 op.u.config.minmax = (int8_t)l; in sched_class()
2892 if (op.u.config.minmax < 0) { in sched_class()
/freebsd/sys/gnu/dev/bwn/phy_n/
H A Dif_bwn_phy_n_core.c670 uint16_t minmax[2]; in bwn_nphy_adjust_lna_gain_table() local
705 minmax[i] = 23 + gain[i]; in bwn_nphy_adjust_lna_gain_table()
709 minmax[0] << BWN_NPHY_C1_MINGAIN_SHIFT); in bwn_nphy_adjust_lna_gain_table()
711 minmax[1] << BWN_NPHY_C2_MINGAIN_SHIFT); in bwn_nphy_adjust_lna_gain_table()
/freebsd/lib/libc++/
H A DMakefile337 ALG_HEADERS+= minmax.h
H A Dlibcxx.imp60 { include: [ "<__algorithm/minmax.h>", "private", "<algorithm>", "public" ] },
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc2175 SYMBOL(minmax, std::, <algorithm>)
3654 SYMBOL(minmax, std::ranges::, <algorithm>)