Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cc103 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath);
362 int npath = 0; in CycleCheck() local
373 npath--; in CycleCheck()
385 pt->path[npath++] = link; in CycleCheck()
388 return Report(pt, lt, npath); // Bingo! in CycleCheck()
401 void DD::Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath) { in Report() argument
403 rep->n = npath; in Report()
404 for (int i = 0; i < npath; i++) { in Report()
406 Link *link0 = &pt->path[i ? i - 1 : npath - 1]; in Report()
/freebsd-12.1/contrib/tcsh/
H A Dma.setp.c287 int npath, i, len; in savepaths() local
290 for (npath = 0, pe = pathhead; pe; npath++, pe = pe->pnext) { in savepaths()
297 paths[npath] = p; in savepaths()
/freebsd-12.1/sys/fs/ext2fs/
H A Dext2_extents.c1040 struct ext4_extent_path *npath; in ext4_ext_insert_extent() local
1045 npath = NULL; in ext4_ext_insert_extent()
1068 KASSERT(npath == NULL, in ext4_ext_insert_extent()
1071 error = ext4_ext_find_extent(ip, next, &npath); in ext4_ext_insert_extent()
1075 if (npath->ep_depth != path->ep_depth) { in ext4_ext_insert_extent()
1080 eh = npath[depth].ep_header; in ext4_ext_insert_extent()
1082 path = npath; in ext4_ext_insert_extent()
1155 if (npath) { in ext4_ext_insert_extent()
1156 ext4_ext_drop_refs(npath); in ext4_ext_insert_extent()
1157 free(npath, M_EXT2EXTENTS); in ext4_ext_insert_extent()
/freebsd-12.1/contrib/subversion/subversion/libsvn_client/
H A Dcommit_util.c1589 const char *npath = item->path; in do_item_commit() local
1599 notify = svn_wc_create_notify(npath, in do_item_commit()
1603 notify = svn_wc_create_notify(npath, svn_wc_notify_commit_replaced, in do_item_commit()
1609 notify = svn_wc_create_notify(npath, svn_wc_notify_commit_deleted, in do_item_commit()
1615 notify = svn_wc_create_notify(npath, svn_wc_notify_commit_copied, in do_item_commit()
1618 notify = svn_wc_create_notify(npath, svn_wc_notify_commit_added, in do_item_commit()
1635 notify = svn_wc_create_notify(npath, svn_wc_notify_commit_modified, in do_item_commit()
/freebsd-12.1/contrib/sendmail/src/
H A Dqueue.c7823 char npath[MAXPATHLEN]; local
7838 (void) sm_strlcpy(npath, queuename(new, DATAFL_LETTER), sizeof(npath));
7866 if (link(opath, npath) == 0)
7869 SYNC_DIR(npath, true);
7883 (void) sm_strlcpy(npath, queuename(new, DATAFL_LETTER), sizeof(npath));
7884 if (link(opath, npath) == 0)
7887 SYNC_DIR(npath, true);
7895 opath, npath, sm_errstring(errno));