Searched refs:nd (Results 126 - 150 of 168) sorted by relevance

1234567

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_mtree.c363 int i, fn, nd, pd; local
368 nd = 0;
371 nd = mtree->depth?4:0;
375 nd = pd = 0;
384 for (i = 0; i < nd + pd; i++)
387 if (nd + (r -s) > INDENTNAMELEN) {
392 for (i = (int)(r -s + nd);
414 for (i = 0; i < nd + pd; i++)
/freebsd-11-stable/tools/tools/ath/athrd/
H A Dathrd.c929 intersect(struct ieee80211_channel *dst, int16_t *dtxpow, int *nd, argument
933 while (i < *nd) {
937 for (k = i+1, l = i; k < *nd; k++, l++)
939 (*nd)--;
/freebsd-11-stable/sys/ufs/ufs/
H A Dufs_quota.c498 struct nameidata nd; local
514 NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, fname, td);
518 error = vn_open(&nd, &flags, 0, NULL);
523 NDFREE(&nd, NDF_ONLY_PNBUF);
524 vp = nd.ni_vp;
/freebsd-11-stable/contrib/file/src/
H A Dcdf.c685 size_t ss = CDF_SEC_SIZE(h), ns, nd; local
693 nd = ss / CDF_DIRECTORY_SIZE;
695 dir->dir_len = ns * nd;
716 for (j = 0; j < nd; j++) {
717 cdf_unpack_dir(&dir->dir_tab[i * nd + j],
/freebsd-11-stable/lib/libc/net/
H A Dgetaddrinfo.c1669 struct in6_ndireq nd; local
1674 memset(&nd, 0, sizeof(nd));
1675 strlcpy(nd.ifname, name, sizeof(nd.ifname));
1676 if (_ioctl(fd, SIOCGIFINFO_IN6, &nd) < 0) {
1681 return ((nd.ndi.flags & ND6_IFF_IFDISABLED) != 0);
/freebsd-11-stable/sys/compat/ndis/
H A Dsubr_ndis.c2749 struct nameidata nd; local
2827 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, path, td);
2830 error = vn_open(&nd, &flags, 0, NULL);
2842 NDFREE(&nd, NDF_ONLY_PNBUF);
2845 VOP_GETATTR(nd.ni_vp, vap, td->td_ucred);
2846 VOP_UNLOCK(nd.ni_vp, 0);
2848 fh->nf_vp = nd.ni_vp;
/freebsd-11-stable/sys/kern/
H A Dkern_sig.c3366 struct nameidata nd; local
3379 NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, name, td);
3380 error = vn_open_cred(&nd, &flags, cmode, oflags, td->td_ucred,
3385 vp = nd.ni_vp;
3386 NDFREE(&nd, NDF_ONLY_PNBUF);
3450 struct nameidata nd; local
3533 NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, name, td);
3534 error = vn_open_cred(&nd, &flags, cmode, oflags, td->td_ucred,
3537 *vpp = nd.ni_vp;
3538 NDFREE(&nd, NDF_ONLY_PNBU
[all...]
H A Dvfs_cache.c2493 struct nameidata nd; local
2524 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | AUDITVNODE1,
2526 error = namei(&nd);
2531 NDFREE(&nd, NDF_ONLY_PNBUF);
2532 vp1 = nd.ni_vp;
H A Dvfs_subr.c340 struct nameidata nd; local
358 NDINIT(&nd, LOOKUP, ndflags, UIO_SYSSPACE, buf, curthread);
359 if ((error = namei(&nd)) != 0)
361 vp = nd.ni_vp;
377 NDFREE(&nd, 0);
H A Dkern_jail.c487 struct nameidata nd; local
934 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_SYSSPACE,
936 error = namei(&nd);
939 root = nd.ni_vp;
940 NDFREE(&nd, NDF_ONLY_PNBUF);
/freebsd-11-stable/contrib/libreadline/
H A Ddisplay.c1218 int temp, lendiff, wsatend, od, nd, twidth, o_cpos; local
1355 for (nd = nfd - new, ne = nfd; nd < nmax && *ne; ne++, nd++);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp8847 clang::NamedDecl *nd =
8849 if (nd != nullptr)
8850 return ConstString(nd->getDeclName().getAsString());
8857 clang::NamedDecl *nd =
8859 if (nd != nullptr && !llvm::isa<clang::ObjCMethodDecl>(nd)) {
8861 if (mc && mc->shouldMangleCXXName(nd)) {
8864 if (llvm::isa<clang::CXXConstructorDecl>(nd)) {
8865 mc->mangleCXXCtor(llvm::dyn_cast<clang::CXXConstructorDecl>(nd),
8867 } else if (llvm::isa<clang::CXXDestructorDecl>(nd)) {
[all...]
/freebsd-11-stable/share/mk/
H A Dmeta.stage.mk281 # anything in the 2nd list but not the first is stale - remove it.
H A Dsrc.libnames.mk207 # 2nd+ order consumers. Auto-generating this would be better.
/freebsd-11-stable/contrib/ntp/sntp/
H A DMakefile.am196 x=`bk -R prs -hr+ -nd:I: ChangeSet` && \
/freebsd-11-stable/sys/fs/ext2fs/
H A Dext2_vfsops.c117 struct nameidata nd, *ndp = &nd; local
/freebsd-11-stable/sys/fs/udf/
H A Dudf_vfsops.c197 struct nameidata nd, *ndp = &nd; local
/freebsd-11-stable/sys/dev/xen/blkback/
H A Dblkback.c2680 struct nameidata nd; local
2701 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, xbb->dev_name, curthread);
2702 error = vn_open(&nd, &flags, 0, NULL);
2731 NDFREE(&nd, NDF_ONLY_PNBUF);
2733 xbb->vn = nd.ni_vp;
/freebsd-11-stable/sys/x86/iommu/
H A Dintel_dmar.h263 u_int dmar_nd2mask(u_int nd);
/freebsd-11-stable/sys/dev/isp/
H A Disp_library.c491 int nd = 0; local
495 nd++;
499 if (nd++) {
505 if (nd++) {
511 if (nd++) {
517 if (nd++) {
523 if (nd++) {
529 if (nd++) {
535 if (nd++) {
541 if (nd
[all...]
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha512-ia64.pl130 input=r56; // 2nd arg
146 { .mmi; $ADDP input=0,r33 // 2nd arg
/freebsd-11-stable/contrib/bmake/mk/
H A Dmeta.stage.mk347 # anything in the 2nd list but not the first is stale - remove it.
/freebsd-11-stable/contrib/openresolv/
H A Dresolvconf.in598 for nd in $DOMAINS; do
599 if [ "$dn" = "${nd%%:*}" ]; then
600 ns="${nd#*:}"
/freebsd-11-stable/sys/cam/ctl/
H A Dctl_backend_block.c2120 struct nameidata nd; local
2150 NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, be_lun->dev_path, curthread);
2151 error = vn_open(&nd, &flags, 0, NULL);
2181 NDFREE(&nd, NDF_ONLY_PNBUF);
2182 be_lun->vn = nd.ni_vp;
/freebsd-11-stable/contrib/gdb/gdb/
H A Dnto-procfs.c1044 inherit.nd = nto_node();

Completed in 230 milliseconds

1234567