Searched defs:umax (Results 1 - 3 of 3) sorted by relevance

/external/iproute2/tc/
H A Dq_hfsc.c54 "SC := [ [ umax BYTE ] dmax SEC ] rate BPS\n"
56 " umax : maximum unit of work\n"
340 unsigned int umax = 0, dmax = 0, rate = 0; local
342 if (matches(*argv, "umax") == 0) {
344 if (get_size(&umax, *argv) < 0) {
345 explain1("umax");
369 if (umax != 0 && dmax == 0) {
370 fprintf(stderr, "HFSC: umax given but dmax is zero.\n");
374 if (dmax != 0 && ceil(1.0 * umax * TIME_UNITS_PER_SEC / dmax) > rate) {
376 * concave curve, slope of first segment is umax/dma
[all...]
/external/llvm/lib/Support/
H A DConstantRange.cpp612 ConstantRange::umax(const ConstantRange &Other) const { function in class:ConstantRange
613 // X umax Y is: range(umax(X_umin, Y_umin),
614 // umax(X_umax, Y_umax))
617 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin());
618 APInt NewU = APIntOps::umax(getUnsignedMax(), Other.getUnsignedMax()) + 1;
673 APInt umax = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin());
674 if (umax.isMinValue())
676 return ConstantRange(umax, APIn
[all...]
/external/chromium_org/third_party/smhasher/src/
H A Dpstdint.h763 uintmax_t umax = UINTMAX_C(0); local
786 sprintf (str1, "%" PRINTF_INTMAX_MODIFIER "u %x\n", umax, ~0);
787 if (0 != strcmp (str0, str1)) printf ("Something wrong with umax : %s\n", str1);

Completed in 365 milliseconds