Home
last modified time | relevance | path

Searched refs:kEpochMask (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()
77 (w->epoch & kEpochMask) + in CommitWait()
81 if (int64_t((state & kEpochMask) - epoch) < 0) { in CommitWait()
89 if (int64_t((state & kEpochMask) - epoch) > 0) return; in CommitWait()
108 (w->epoch & kEpochMask) + in CancelWait()
112 if (int64_t((state & kEpochMask) - epoch) < 0) { in CancelWait()
120 if (int64_t((state & kEpochMask) - epoch) > 0) return; in CancelWait()
142 newstate = (state & kEpochMask) + (kEpochInc * waiters) + kStackMask; in Notify()
156 newstate = (state & kEpochMask) + next; in Notify()
199 static const uint64_t kEpochMask = ((1ull << kEpochBits) - 1) << kEpochShift; variable