Searched refs:in_range (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/sys/dev/cxgbe/
H A Dt4_sched.c49 in_range(int val, int lo, int hi) function
104 if (!in_range(p->channel, 0, sc->chip_params->nchan - 1))
130 if (!in_range(p->minrate, 0, 100) ||
131 !in_range(p->maxrate, 0, 100)) {
137 if (!in_range(p->minrate, 0, top_speed) ||
138 !in_range(p->maxrate, 0, top_speed)) {
157 if (!in_range(p->weight, 1, 99))
171 if (!in_range(p->cl, 0, sc->chip_params->nsched_cls - 1))
178 if (!in_range(p->pktsize, 64, pi->vi[0].ifp->if_mtu))
399 if (!in_range(
[all...]
/freebsd-13-stable/contrib/wpa/src/eap_common/
H A Deap_pwd_common.c141 unsigned int in_range; local
213 in_range = const_time_fill_msb((unsigned int) cmp_prime);
250 found |= (res & in_range) * 0xff;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp106 bool in_range = false; local
109 if (in_range) {
117 in_range = false;
123 // Turn on the in_range flag, we are looking for end of range next.
125 in_range = true;
134 // It is an error if after the loop, we're still in_range.
135 return !in_range;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepRange.cpp490 bool in_range = local
492 if (in_range) {
/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBModule.i16 def in_range(symbol, section):
380 if in_range(sym, section):
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
H A Dmergeinfo.c871 svn_boolean_t in_range; /* current interval is range RL[I], not a gap? */ member in struct:rangelist_interval_iterator_t
890 if (!it->in_range)
920 if (it->in_range)
922 it->in_range = !it->in_range;
936 it->in_range = FALSE;
948 * (0, MI_NONE, RL[0]->start), // i=0, !in_range
949 * (RL[0]->start, MI_* RL[0]->end), // i=0, in_range
/freebsd-13-stable/contrib/wpa/src/common/
H A Dsae.c148 unsigned int in_range; local
165 in_range = const_time_fill_msb((unsigned int) cmp_prime);
183 return const_time_select_int(in_range, res, 0);
/freebsd-13-stable/sys/dev/cxgb/
H A Dcxgb_main.c2520 in_range(int val, int lo, int hi) function
2942 if (t->sched >= NTX_SCHED || !in_range(t->mode, 0, 1) ||
2943 !in_range(t->channel, 0, 1) ||
2944 !in_range(t->kbps, 0, 10000000) ||
2945 !in_range(t->class_ipg, 0, 10000 * 65535 / ticks_per_usec) ||
2946 !in_range(t->flow_ipg, 0,
/freebsd-13-stable/usr.sbin/cxgbetool/
H A Dcxgbetool.c57 #define in_range(val, lo, hi) ( val < 0 || (val <= hi && val >= lo)) macro
2989 !in_range(op.u.params.maxrate, 1, 100)) {
2995 !in_range(op.u.params.maxrate, 1, 100000000)) {

Completed in 154 milliseconds