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/IR/
H A DConstantRange.cpp651 ConstantRange::umax(const ConstantRange &Other) const { function in class:ConstantRange
652 // X umax Y is: range(umax(X_umin, Y_umin),
653 // umax(X_umax, Y_umax))
656 APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin());
657 APInt NewU = APIntOps::umax(getUnsignedMax(), Other.getUnsignedMax()) + 1;
712 APInt umax = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin());
713 if (umax.isMinValue())
715 return ConstantRange(umax, APIn
[all...]
/external/vixl/src/vixl/a64/
H A Dlogic-a64.cc1507 LogicVRegister Simulator::umax(VectorFormat vform, function in class:vixl::Simulator

Completed in 145 milliseconds