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 void SetIgnoreBit() { x_ |= kIgnoreBit; } in SetIgnoreBit()
111 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; } in ClearIgnoreBit()
112 bool GetIgnoreBit() const { return x_ & kIgnoreBit; } in GetIgnoreBit()
118 static const u64 kIgnoreBit = 1ull; variable