Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_shadow.h23 part_.epoch_ = static_cast<u16>(kEpochLast); in Reset()
32 Epoch epoch() const { return static_cast<Epoch>(part_.epoch_); } in epoch()
34 void SetEpoch(Epoch epoch) { part_.epoch_ = static_cast<u16>(epoch); } in SetEpoch()
45 u32 epoch_ : kEpochBits; member
66 UNUSED u16 epoch0 = part_.epoch_; in Shadow()
81 Epoch epoch() const { return static_cast<Epoch>(part_.epoch_); } in epoch()
143 s.part_.epoch_ = static_cast<u16>(epoch); in FreedInfo()
152 u16 epoch_ : kEpochBits; member
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector.h41 epoch_ = 0; in clear()
49 if (epoch_ == current_epoch) return; in ensureCurrentEpoch()
51 epoch_ = current_epoch; in ensureCurrentEpoch()
56 uptr getEpoch() const { return epoch_; } in getEpoch()
60 CHECK_EQ(epoch_, current_epoch); in addLock()
107 CHECK_EQ(epoch_, current_epoch); in getLocks()
116 uptr epoch_; variable