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 70 APInt UMax(CR.getUnsignedMax());
71 if (UMax.isMinValue())
73 return ConstantRange(APInt::getMinValue(W), UMax);
82 APInt UMax(CR.getUnsignedMax());
83 if (UMax.isMaxValue())
85 return ConstantRange(APInt::getMinValue(W), UMax + 1);
704 ConstantRange::umax(const ConstantRange &Other) const { function in class:ConstantRange
705 // X umax Y is: range(umax(X_umin, Y_umin),
706 // umax(X_umax, Y_umax)
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testautomation_sdltest.c 90 Uint64 umax; local
94 umax = (1 << 8) - 1;
96 SDLTest_AssertCheck(result >= 0 && result <= (Sint64)umax, "Verify result value, expected: [0,%llu], got: %lld", umax, result);
105 umax = (1 << 16) - 1;
107 SDLTest_AssertCheck(result >= 0 && result <= (Sint64)umax, "Verify result value, expected: [0,%llu], got: %lld", umax, result);
116 umax = ((Uint64)1 << 32) - 1;
118 SDLTest_AssertCheck(result >= 0 && result <= (Sint64)umax, "Verify result value, expected: [0,%llu], got: %lld", umax, result)
    [all...]
  /external/vixl/src/vixl/a64/
logic-a64.cc 1511 LogicVRegister Simulator::umax(VectorFormat vform, function in class:vixl::Simulator
    [all...]

Completed in 1838 milliseconds