Home
last modified time | relevance | path

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

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_deadlock_detector2.cc103 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath);
366 int npath = 0; in CycleCheck() local
377 npath--; in CycleCheck()
389 pt->path[npath++] = link; in CycleCheck()
392 return Report(pt, lt, npath); // Bingo! in CycleCheck()
405 void DD::Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) { in Report() argument
407 rep->n = npath; in Report()
408 for (int i = 0; i < npath; i++) { in Report()
410 Link *link0 = &pt->path[i ? i - 1 : npath - 1]; in Report()
/external/python/cpython2/Python/
Dtraceback.c143 int npath = Py_SAFE_DOWNCAST(_npath, Py_ssize_t, int); in _Py_DisplaySourceLine() local
145 for (i = 0; i < npath; i++) { in _Py_DisplaySourceLine()
Dimport.c1317 Py_ssize_t i, npath; in find_module() local
1359 npath = PyList_Size(meta_path); in find_module()
1360 for (i = 0; i < npath; i++) { in find_module()
1447 npath = PyList_Size(path); in find_module()
1449 for (i = 0; i < npath; i++) { in find_module()
/external/mksh/src/
Dexec.c1173 union mksh_cchack npath; in findcom() local
1227 npath.ro = search_path(name, in findcom()
1230 if (npath.ro) { in findcom()
1231 strdupx(tp->val.s, npath.ro, APERM); in findcom()
1232 if (npath.ro != name) in findcom()
1233 afree(npath.rw, ATEMP); in findcom()
1237 (npath.ro = search_path(name, fpath, R_OK, in findcom()
1249 tp->u.fpath = npath.ro; in findcom()
/external/fio/engines/
Ddev-dax.c260 char npath[PATH_MAX]; in fio_devdax_get_file_size() local
283 rpath = realpath(spath, npath); in fio_devdax_get_file_size()
/external/python/cpython3/Python/
Dtraceback.c190 Py_ssize_t npath; in _Py_FindSourceFile() local
218 npath = PyList_Size(syspath); in _Py_FindSourceFile()
220 for (i = 0; i < npath; i++) { in _Py_FindSourceFile()
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DCodeMangler.java297 String npath = ".".equals(name) ? path : path + fin.getName() + File.separator; in process() local
298 count += process(npath, fin.list(filter)); // recursive call in process()