/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/Support/ |
ConstantRange.cpp | 67 APInt UMax(CR.getUnsignedMax()); 68 if (UMax.isMinValue()) 70 return ConstantRange(APInt::getMinValue(W), UMax); 79 APInt UMax(CR.getUnsignedMax()); 80 if (UMax.isMaxValue()) 82 return ConstantRange(APInt::getMinValue(W), UMax + 1); 612 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) [all...] |
/external/chromium_org/third_party/smhasher/src/ |
pstdint.h | 763 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);
|
/frameworks/base/core/java/com/android/internal/app/ |
ProcessStats.java | 949 long umax = proc.mStats.getLong(off, PSS_USS_MAXIMUM); local [all...] |