HomeSort by relevance Sort by last modified time
    Searched defs:umax (Results 1 - 2 of 2) sorted by null

  /external/iproute2/tc/
q_hfsc.c 54 "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/dmax
    [all...]
  /external/llvm/lib/Support/
ConstantRange.cpp 66 APInt UMax(CR.getUnsignedMax());
67 if (UMax.isMinValue())
69 return ConstantRange(APInt::getMinValue(W), UMax);
78 APInt UMax(CR.getUnsignedMax());
79 if (UMax.isMaxValue())
81 return ConstantRange(APInt::getMinValue(W), UMax + 1);
559 ConstantRange::umax(const ConstantRange &Other) const { function in class:ConstantRange
560 // X umax Y is: range(umax(X_umin, Y_umin),
561 // umax(X_umax, Y_umax)
    [all...]

Completed in 37 milliseconds