HomeSort by relevance Sort by last modified time
    Searched defs:umax (Results 1 - 4 of 4) 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"
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/dmax
    [all...]
  /external/llvm/lib/IR/
ConstantRange.cpp 68 APInt UMax(CR.getUnsignedMax());
69 if (UMax.isMinValue())
71 return ConstantRange(APInt::getMinValue(W), UMax);
80 APInt UMax(CR.getUnsignedMax());
81 if (UMax.isMaxValue())
83 return ConstantRange(APInt::getMinValue(W), UMax + 1);
651 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)
    [all...]
  /external/vixl/src/vixl/a64/
logic-a64.cc 1507 LogicVRegister Simulator::umax(VectorFormat vform, function in class:vixl::Simulator
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ProcessStats.java 1244 long umax = proc.mStats.getLong(off, PSS_USS_MAXIMUM); local
    [all...]

Completed in 216 milliseconds