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

  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_shadow.h 26 x_ = tid << kTidShift;
38 u64 res = (x_ & ~kIgnoreBit) >> kTidShift;
43 u64 res = x_ >> kTidShift;
86 static const int kTidShift = 64 - kTidBits - 1;
136 u64 shifted_xor = (s1.x_ ^ s2.x_) >> kTidShift;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.h 109 x_ = tid << kTidShift;
125 u64 res = (x_ & ~kIgnoreBit) >> kTidShift;
130 u64 res = x_ >> kTidShift;
175 static const int kTidShift = 64 - kTidBits - 1;
234 u64 shifted_xor = (s1.x_ ^ s2.x_) >> kTidShift;

Completed in 24 milliseconds