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

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_debugging.cc 198 bool is_stack = false; local in function:__tsan_locate_address
214 ThreadContext *tctx = IsThreadStackOrTls(addr, &is_stack);
217 region_kind = is_stack ? "stack" : "tls";
tsan_rtl_report.cc 242 ThreadContext *IsThreadStackOrTls(uptr addr, bool *is_stack) {
251 *is_stack = (addr >= thr->stk_addr && addr < thr->stk_addr + thr->stk_size);
348 bool is_stack = false; local in function:__tsan::ScopedReportBase::AddLocation
349 if (ThreadContext *tctx = IsThreadStackOrTls(addr, &is_stack)) {
351 ReportLocation::New(is_stack ? ReportLocationStack : ReportLocationTLS);

Completed in 31 milliseconds