Home
last modified time | relevance | path

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

/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl.h109 u64 res = (x_ & ~kIgnoreBit) >> kTidShift; in tid()
130 void SetIgnoreBit() { x_ |= kIgnoreBit; } in SetIgnoreBit()
131 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; } in ClearIgnoreBit()
160 static const u64 kIgnoreBit = 1ull << 63; variable