Home
last modified time | relevance | path

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

/src/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{};
/src/contrib/libucl/src/
H A Ducl_schema.c159 int64_t minmax; in ucl_schema_validate_object() local
203 && ucl_object_toint_safe (elt, &minmax)) { in ucl_schema_validate_object()
204 if (obj->len < minmax) { in ucl_schema_validate_object()
207 obj->len, (unsigned)minmax); in ucl_schema_validate_object()
213 && ucl_object_toint_safe (elt, &minmax)) { in ucl_schema_validate_object()
214 if (obj->len > minmax) { in ucl_schema_validate_object()
217 obj->len, (unsigned)minmax); in ucl_schema_validate_object()
494 int64_t minmax; in ucl_schema_validate_array() local
550 && ucl_object_toint_safe (elt, &minmax)) { in ucl_schema_validate_array()
551 if (obj->len < minmax) { in ucl_schema_validate_array()
[all …]
/src/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()
/src/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_aggregate.c1430 dtrace_aggdata_t **minmax; local
1449 minmax = dt_zalloc(dtp, (max + 1) * sizeof (dtrace_aggdata_t *));
1451 if (minmax == NULL)
1505 if (minmax[agg->dtagd_varid] == NULL) {
1506 minmax[agg->dtagd_varid] = aggdata;
1513 if (minbin < minmax[agg->dtagd_varid]->dtada_minbin)
1514 minmax[agg->dtagd_varid]->dtada_minbin = minbin;
1516 if (maxbin > minmax[agg->dtagd_varid]->dtada_maxbin)
1517 minmax[agg->dtagd_varid]->dtada_maxbin = maxbin;
1527 if ((mm = minmax[agg->dtagd_varid]) == NULL || aggdata == mm)
[all …]
/src/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.h286 int8_t minmax; /* minmax enable */ member
/src/contrib/llvm-project/libcxx/modules/std/
H A Dalgorithm.inc561 using std::minmax;
566 using std::ranges::minmax;
/src/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"
/src/usr.sbin/cxgbetool/
H A Dcxgbetool.c2973 op.u.config.minmax = -1; in sched_class()
3010 op.u.config.minmax = (int8_t)l; in sched_class()
3095 if (op.u.config.minmax < 0) { in sched_class()
/src/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeLayout.cpp772 std::minmax(ChainPredDensity, ChainSuccDensity); in mergeChainPairs()
/src/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()
/src/lib/libc++/
H A DMakefile337 ALG_HEADERS+= minmax.h
H A Dlibcxx.imp60 { include: [ "<__algorithm/minmax.h>", "private", "<algorithm>", "public" ] },
/src/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc2175 SYMBOL(minmax, std::, <algorithm>)
3654 SYMBOL(minmax, std::ranges::, <algorithm>)