OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kTracePartSize
(Results
1 - 5
of
5
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_trace.h
24
const int
kTracePartSize
= 1 << kTracePartSizeBits;
25
const int kTraceParts = 2 * 1024 * 1024 /
kTracePartSize
;
26
const int kTraceSize =
kTracePartSize
* kTraceParts;
tsan_rtl_report.cc
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
);
tsan_rtl_thread.cc
94
epoch0 = RoundUp(epoch1 + 1,
kTracePartSize
);
tsan_rtl.cc
562
unsigned trace = (thr->fast_state.epoch() /
kTracePartSize
) % TraceParts();
585
return TraceSize() /
kTracePartSize
;
tsan_rtl.h
852
if (UNLIKELY((pos %
kTracePartSize
) == 0)) {
Completed in 38 milliseconds
Indexes created Sat Feb 21 16:20:20 UTC 2026