HomeSort by: relevance | last modified time | path
    Searched defs:kIgnoreBit (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_shadow.h 38 u64 res = (x_ & ~kIgnoreBit) >> kTidShift;
59 void SetIgnoreBit() { x_ |= kIgnoreBit; }
60 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; }
87 static const u64 kIgnoreBit = 1ull << 63;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.h 125 u64 res = (x_ & ~kIgnoreBit) >> kTidShift;
146 void SetIgnoreBit() { x_ |= kIgnoreBit; }
147 void ClearIgnoreBit() { x_ &= ~kIgnoreBit; }
176 static const u64 kIgnoreBit = 1ull << 63;

Completed in 50 milliseconds