Searched defs:umax (Results 1 - 2 of 2) 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"
336 unsigned int umax = 0, dmax = 0, rate = 0; local
338 if (matches(*argv, "umax") == 0) {
340 if (get_size(&umax, *argv) < 0) {
341 explain1("umax");
365 if (umax != 0 && dmax == 0) {
366 fprintf(stderr, "HFSC: umax given but dmax is zero.\n");
370 if (dmax != 0 && ceil(1.0 * umax * TIME_UNITS_PER_SEC / dmax) > rate) {
372 * concave curve, slope of first segment is umax/dma
[all...]
/external/llvm/lib/Support/
H A DConstantRange.cpp611 ConstantRange::umax(const ConstantRange &Other) const { function in class:ConstantRange
612 // X umax Y is: range(umax(X_umin, Y_umin),
613 // umax(X_umax, Y_umax))
616 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin());
617 APInt NewU = APIntOps::umax(getUnsignedMax(), Other.getUnsignedMax()) + 1;
672 APInt umax = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin());
673 if (umax.isMinValue())
675 return ConstantRange(umax, APIn
[all...]

Completed in 232 milliseconds