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

  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_shadow.h 88 static const u64 kFreedBit = 1ull << 63;
179 void MarkAsFreed() { x_ |= kFreedBit; }
181 bool IsFreed() const { return x_ & kFreedBit; }
184 bool res = x_ & kFreedBit;
185 x_ &= ~kFreedBit;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.h 177 static const u64 kFreedBit = 1ull << 63;
278 x_ |= kFreedBit;
282 return x_ & kFreedBit;
286 bool res = x_ & kFreedBit;
287 x_ &= ~kFreedBit;

Completed in 60 milliseconds