Searched refs:npath (Results 1 – 8 of 8) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_deadlock_detector2.cc | 103 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/ |
D | traceback.c | 143 int npath = Py_SAFE_DOWNCAST(_npath, Py_ssize_t, int); in _Py_DisplaySourceLine() local 145 for (i = 0; i < npath; i++) { in _Py_DisplaySourceLine()
|
D | import.c | 1339 Py_ssize_t i, npath; in find_module() local 1381 npath = PyList_Size(meta_path); in find_module() 1382 for (i = 0; i < npath; i++) { in find_module() 1469 npath = PyList_Size(path); in find_module() 1471 for (i = 0; i < npath; i++) { in find_module()
|
/external/mksh/src/ |
D | exec.c | 1181 union mksh_cchack npath; in findcom() local 1235 npath.ro = search_path(name, in findcom() 1238 if (npath.ro) { in findcom() 1239 strdupx(tp->val.s, npath.ro, APERM); in findcom() 1240 if (npath.ro != name) in findcom() 1241 afree(npath.rw, ATEMP); in findcom() 1245 (npath.ro = search_path(name, fpath, R_OK, in findcom() 1257 tp->u.fpath = npath.ro; in findcom()
|
/external/python/cpython3/Python/ |
D | traceback.c | 289 Py_ssize_t npath; in _Py_FindSourceFile() local 317 npath = PyList_Size(syspath); in _Py_FindSourceFile() 319 for (i = 0; i < npath; i++) { in _Py_FindSourceFile()
|
/external/python/setuptools/pkg_resources/ |
D | __init__.py | 2735 npath = [(p and _normalize_cached(p) or p) for p in path] 2737 for p, item in enumerate(npath): 2748 if (not replace) and nloc in npath[p:]: 2753 npath.insert(p, nloc) 2767 np = npath.index(nloc, p + 1) 2771 del npath[np], path[np]
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | CodeMangler.java | 297 String npath = ".".equals(name) ? path : path + fin.getName() + File.separator; in process() local 298 count += process(npath, fin.list(filter)); // recursive call in process()
|
/external/python/setuptools/setuptools/command/ |
D | easy_install.py | 1666 npath, last = os.path.split(normalize_path(path)) 1670 while len(npath) >= baselen: 1671 if npath == self.basedir: 1675 npath, last = os.path.split(npath)
|