Home
last modified time | relevance | path

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

/freebsd/sys/dev/cxgbe/
H A Dt4_sched.c46 in_range(int val, int lo, int hi) in in_range() function
104 if (!in_range(p->channel, 0, sc->chip_params->nchan - 1)) in set_sched_class_params()
130 if (!in_range(p->minrate, 0, 100) || in set_sched_class_params()
131 !in_range(p->maxrate, 0, 100)) { in set_sched_class_params()
137 if (!in_range(p->minrate, 0, top_speed) || in set_sched_class_params()
138 !in_range(p->maxrate, 0, top_speed)) { in set_sched_class_params()
157 if (!in_range(p->weight, 1, 99)) in set_sched_class_params()
171 if (!in_range(p->cl, 0, sc->params.nsched_cls - 1)) in set_sched_class_params()
178 if (!in_range(p->pktsize, 64, if_getmtu(pi->vi[0].ifp))) in set_sched_class_params()
425 if (!in_range( in t4_set_sched_queue()
[all...]
/freebsd/contrib/wpa/src/eap_common/
H A Deap_pwd_common.c142 unsigned int in_range; in compute_password_element() local
210 in_range = const_time_fill_msb((unsigned int) cmp_prime); in compute_password_element()
247 found |= (res & in_range) * 0xff; in compute_password_element()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp108 bool in_range = false; in VerifyWatchpointIDs() local
111 if (in_range) { in VerifyWatchpointIDs()
119 in_range = false; in VerifyWatchpointIDs()
127 in_range = true; in VerifyWatchpointIDs()
137 return !in_range; in VerifyWatchpointIDs()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBModuleExtensions.i6 def in_range(symbol, section):
56 if in_range(sym, section):
/freebsd/contrib/llvm-project/libcxx/include/__utility/
H A Dcmp.h70 _LIBCPP_HIDE_FROM_ABI constexpr bool in_range(_Up __u) noexcept { in cmp_less()
100 bool in_range(_Up __u) noexcept in_range() function
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepRange.cpp487 bool in_range = in IsPlanStale() local
489 if (in_range) { in IsPlanStale()
/freebsd/contrib/llvm-project/lldb/docs/
H A Dpython_api.rst12 :skip: in_range
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dutility.cppm
/freebsd/sys/dev/cxgb/
H A Dcxgb_main.c2460 in_range(int val, int lo, int hi) in in_range() function
2882 if (t->sched >= NTX_SCHED || !in_range(t->mode, 0, 1) || in cxgb_extension_ioctl()
2883 !in_range(t->channel, 0, 1) || in cxgb_extension_ioctl()
2884 !in_range(t->kbps, 0, 10000000) || in cxgb_extension_ioctl()
2885 !in_range(t->class_ipg, 0, 10000 * 65535 / ticks_per_usec) || in cxgb_extension_ioctl()
2886 !in_range(t->flow_ipg, 0, in cxgb_extension_ioctl()
/freebsd/contrib/wpa/src/common/
H A Dsae.c155 unsigned int in_range; in sae_test_pwd_seed_ecc() local
172 in_range = const_time_fill_msb((unsigned int) cmp_prime); in sae_test_pwd_seed_ecc()
190 return const_time_select_int(in_range, res, 0); in sae_test_pwd_seed_ecc()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dutility71 template<class R, class T> constexpr bool in_range(T t) noexcept; // C++20
H A Dmemory208 uninitialized_copy(InputRange&& in_range, OutputRange&& out_range); // since C++20
308 uninitialized_move(InputRange&& in_range, OutputRange&& out_range); // since C++20
/freebsd/usr.sbin/cxgbetool/
H A Dcxgbetool.c56 #define in_range(val, lo, hi) ( val < 0 || (val <= hi && val >= lo)) macro
2954 !in_range(op.u.params.maxrate, 1, 100)) { in sched_class()
2960 !in_range(op.u.params.maxrate, 1, 100000000)) { in sched_class()
/freebsd/contrib/googletest/docs/
H A Dgmock_cook_book.md1473 Matcher<int> in_range = AllOf(Gt(5), Le(10));
1474 ... use in_range as a matcher in multiple EXPECT_CALLs ...
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1507 SYMBOL(in_range, std::, <utility>)