Searched refs:smax (Results 1 - 15 of 15) sorted by relevance

/freebsd-10-stable/tools/regression/p1003_1b/
H A Dsched.c64 int smax; local
71 if ( (smax = sched_get_priority_max(sched)) == -1 && errno)
74 if (smax - smin + 1 < 32 || smax < smin) {
76 sched_text(sched), smin, smax);
82 sched_text(sched), smin, smax);
/freebsd-10-stable/contrib/apr-util/misc/
H A Dapr_reslist.c48 int smax; /* soft maximum on the total number of resources */ member in struct:apr_reslist_t
223 while (reslist->nidle > reslist->smax && reslist->nidle > 0) {
252 int min, int smax, int hmax,
264 if (min < 0 || min > smax || min > hmax || smax > hmax || hmax == 0 ||
274 if (smax > 0) {
275 smax = 1;
283 rl->smax = smax;
/freebsd-10-stable/contrib/apr-util/include/
H A Dapr_reslist.h72 * @param smax Resources will be destroyed during reslist maintenance to
86 * automatically set to 1 and values of min and smax will be forced to
90 int min, int smax, int hmax,
H A Dapr_memcache.h210 * @param smax soft maximum number of client connections to open
215 * @remark min, smax, and max are only used when APR_HAS_THREADS
221 apr_uint32_t smax,
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
H A DConstantRange.h226 /// smax - Return a new range representing the possible values resulting
228 ConstantRange smax(const ConstantRange &Other) const;
/freebsd-10-stable/contrib/ncurses/form/
H A Dfrm_def.c241 form->page[page_nr].smax = fld->sprev->index;
246 form->page[page_nr].smax = 0;
H A Dform.h64 short smax; /* index of bottom rightmost field on page */ member in struct:__anon3898
H A Dfrm_driver.c3618 Sorted_Next_Field(form->field[form->page[form->curpage].smax])));
/freebsd-10-stable/sys/netipx/
H A Dspx_debug.c192 printf("\t"); p3(rack);p3(ralo);p3(smax);p3(flags); printf("\n");
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DConstantRange.cpp601 ConstantRange::smax(const ConstantRange &Other) const { function in class:ConstantRange
602 // X smax Y is: range(smax(X_smin, Y_smin),
603 // smax(X_smax, Y_smax))
606 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin());
607 APInt NewU = APIntOps::smax(getSignedMax(), Other.getSignedMax()) + 1;
/freebsd-10-stable/contrib/apr-util/dbm/sdbm/
H A Dsdbm.c308 register int smax = SPLTMAX; local
363 } while (--smax);
/freebsd-10-stable/lib/libelf/
H A Delf_update.c293 uint64_t smax, smin, tmax, tmin; local
296 smax = smin + s->s_size;
309 } else if (smax <= tmin)
/freebsd-10-stable/contrib/apr-util/memcache/
H A Dapr_memcache.c401 apr_uint32_t min, apr_uint32_t smax,
425 smax, /* soft maximum */
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DAPInt.h1699 inline APInt smax(const APInt &A, const APInt &B) { return A.sgt(B) ? A : B; }
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp191 case scSMaxExpr: OpStr = " smax "; break;
2383 assert(!Ops.empty() && "Cannot get empty smax!");
2403 APIntOps::smax(LHSC->getValue()->getValue(),
2416 // If we have an smax with a constant maximum-int, it will always be
2446 // X smax Y smax Y --> X smax Y
2447 // X smax Y --> X, if X is always greater than Y
2459 assert(!Ops.empty() && "Reduced smax down to nothing!");
2461 // Okay, it looks like we really DO need an smax exp
[all...]

Completed in 159 milliseconds