Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_defs.h71 const unsigned kMaxTidInClock = kMaxTid * 2; // This includes msb 'freed' bit. variable
73 const unsigned kMaxTidInClock = kMaxTid; // Go does not track freed memory. variable
H A Dtsan_clock.h165 u64 clk_[kMaxTidInClock]; // Fixed size vector clock.
172 DCHECK_LT(tid, kMaxTidInClock); in get()
H A Dtsan_clock.cc114 CHECK_LT(tid, kMaxTidInClock); in ThreadClock()