reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
  569   unsigned trace = (thr->fast_state.epoch() / kTracePartSize) % TraceParts();
  592   return TraceSize() / kTracePartSize;
projects/compiler-rt/lib/tsan/rtl/tsan_rtl.h
  860   if (UNLIKELY((pos % kTracePartSize) == 0)) {
projects/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
  386   const int partidx = (epoch / kTracePartSize) % TraceParts();
  388   if (epoch < hdr->epoch0 || epoch >= hdr->epoch0 + kTracePartSize)
  390   CHECK_EQ(RoundDown(epoch, kTracePartSize), hdr->epoch0);
  393   const u64 ebegin = RoundDown(eend, kTracePartSize);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
   93   epoch0 = RoundUp(epoch1 + 1, kTracePartSize);
projects/compiler-rt/lib/tsan/rtl/tsan_trace.h
   24 const int kTraceParts = 2 * 1024 * 1024 / kTracePartSize;
   25 const int kTraceSize = kTracePartSize * kTraceParts;