Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_shadow.h38 u64 res = (x_ & ~kIgnoreBit) >> kTidShift; in tid()
59 void SetIgnoreBit() { x_ |= kIgnoreBit; } in SetIgnoreBit()
60 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; } in ClearIgnoreBit()
87 static const u64 kIgnoreBit = 1ull << 63; variable