Home
last modified time | relevance | path

Searched refs:MinWait (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DExponentialBackoff.h46 duration MinWait = std::chrono::milliseconds(10),
48 : MinWait(MinWait), MaxWait(MaxWait), in MinWait() argument
57 duration MinWait;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DExponentialBackoff.cpp19 duration CurMaxWait = std::min(MinWait * CurrentMultiplier, MaxWait); in waitForNextAttempt()
20 std::uniform_int_distribution<uint64_t> Dist(MinWait.count(), in waitForNextAttempt()