HomeSort by relevance Sort by last modified time
    Searched full:toppc (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_stack_trace.cc 61 void StackTrace::ObtainCurrent(ThreadState *thr, uptr toppc) {
64 if (n_ + !!toppc == 0)
69 if (n_ + !!toppc > c_) {
70 start = n_ - c_ + !!toppc;
71 n_ = c_ - !!toppc;
75 if (n_ + !!toppc > kTraceStackSize) {
76 start = n_ - kTraceStackSize + !!toppc;
77 n_ = kTraceStackSize - !!toppc;
80 (n_ + !!toppc) * sizeof(s_[0]));
84 if (toppc) {
    [all...]
tsan_stack_trace.h 36 void ObtainCurrent(ThreadState *thr, uptr toppc);
tsan_rtl_report.cc 675 const uptr toppc = TraceTopPC(thr); local
676 traces[0].ObtainCurrent(thr, toppc);

Completed in 195 milliseconds