Home
last modified time | relevance | path

Searched refs:minmax (Results 1 – 22 of 22) 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.h164 inline constexpr auto minmax = __minmax{};
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/
H A Dminmax.h27 minmax(_LIBCPP_LIFETIMEBOUND const _Tp& __a, _LIBCPP_LIFETIMEBOUND const _Tp& __b, _Compare __comp)… in minmax() function
33 minmax(_LIBCPP_LIFETIMEBOUND const _Tp& __a, _LIBCPP_LIFETIMEBOUND const _Tp& __b) { in minmax() function
34 return std::minmax(__a, __b, __less<>()); in minmax()
/freebsd/contrib/libucl/src/
H A Ducl_schema.c160 int64_t minmax; in ucl_schema_validate_object() local
203 …else if (strcmp(ucl_object_key(elt), "minProperties") == 0 && 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()
212 …else if (strcmp(ucl_object_key(elt), "maxProperties") == 0 && 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()
495 int64_t minmax; in ucl_schema_validate_array() local
550 else if (strcmp(ucl_object_key(elt), "minItems") == 0 && ucl_object_toint_safe(elt, &minmax)) { in ucl_schema_validate_array()
551 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.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 …]
/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.h286 int8_t minmax; /* minmax enable */
277 int8_t minmax; /* minmax enable */ global() member
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dalgorithm.cppm
H A Dalgorithm.inc563 using std::minmax;
568 using std::ranges::minmax;
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaFeatures.td51 def FeatureMINMAX : SubtargetFeature<"minmax", "HasMINMAX", "true",
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
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 <__cxx03/__algorithm/minmax.h>
H A Dmodule.modulemap697 header "__algorithm/minmax.h"
/freebsd/contrib/llvm-project/libcxx/include/
H A Dalgorithm222minmax(const T& a, const T& b, Comp comp = {}, Proj proj = {}); …
227minmax(initializer_list<T> r, Comp comp = {}, Proj proj = {}); …
233minmax(R&& r, Comp comp = {}, Proj proj = {}); …
1783 minmax(const T& a, const T& b);
1787 minmax(const T& a, const T& b, Compare comp);
1791 minmax(initializer_list<T> t);
1795 minmax(initializer_list<T> t, Compare comp);
1881 # include <__algorithm/minmax.h>
H A Dmodule.modulemap.in475 module minmax {
476 header "__algorithm/minmax.h"
/freebsd/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()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeLayout.cpp772 std::minmax(ChainPredDensity, ChainSuccDensity); in mergeChainPairs()
/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 DMakefile342 ALG_HEADERS+= minmax.h
854 C3ALG_HEADERS+= minmax.h
H A Dmodule.modulemap475 module minmax {
476 header "__algorithm/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.inc2219 SYMBOL(minmax, std::, <algorithm>)
3744 SYMBOL(minmax, std::ranges::, <algorithm>)