Home
last modified time | relevance | path

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

/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
DEventCount.h56 state_ = kStackMask | (kEpochMask - kEpochInc * waiters.size() * 2); in EventCount()
92 uint64_t newstate = state - kWaiterInc + kEpochInc; in CommitWait()
123 if (state_.compare_exchange_weak(state, state - kWaiterInc + kEpochInc, in CancelWait()
142 newstate = (state & kEpochMask) + (kEpochInc * waiters) + kStackMask; in Notify()
145 newstate = state + kEpochInc - kWaiterInc; in Notify()
200 static const uint64_t kEpochInc = 1ull << kEpochShift; variable