Home
last modified time | relevance | path

Searched refs:npath (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cpp102 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath);
359 int npath = 0; in CycleCheck() local
370 npath--; in CycleCheck()
382 pt->path[npath++] = link; in CycleCheck()
385 return Report(pt, lt, npath); // Bingo! in CycleCheck()
398 void DD::Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) { in Report() argument
400 rep->n = npath; in Report()
401 for (int i = 0; i < npath; i++) { in Report()
403 Link *link0 = &pt->path[i ? i - 1 : npath - 1]; in Report()