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.h110 u64 res = (x_ & ~kIgnoreBit) >> kTidShift; in tid()
131 void SetIgnoreBit() { x_ |= kIgnoreBit; } in SetIgnoreBit()
132 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; } in ClearIgnoreBit()
161 static const u64 kIgnoreBit = 1ull << 63; variable