HomeSort by: relevance | last modified time | path
    Searched refs:maxdepth (Results 1 - 25 of 47) sorted by relevancy

1 2

  /src/external/gpl2/lvm2/dist/include/
Makefile 29 find . -maxdepth 1 -type l -exec $(RM) \{\} \;
34 find . -maxdepth 1 -type l -exec $(RM) \{\} \;
Makefile.in 29 find . -maxdepth 1 -type l -exec $(RM) \{\} \;
34 find . -maxdepth 1 -type l -exec $(RM) \{\} \;
  /src/etc/rc.d/
certctl_init 41 find -f "$certsdir" -- -maxdepth 0 -type d -empty -exit 1 )
  /src/external/gpl3/gdb.old/dist/sim/testsuite/
local.mk 58 `find $$@ -maxdepth 1 -name testrun.sum 2>/dev/null | sort` > testrun.sum; \
60 `find $$@ -maxdepth 1 -name testrun.log 2>/dev/null | sort` > testrun.log; \
  /src/external/mpl/bind/dist/util/
check-make-install.sh.in 53 find "${install_dir}" -maxdepth 1 -mindepth 1 -type d | sort >"${abs_builddir}/existing_dirs"
  /src/external/gpl3/gdb/dist/sim/testsuite/
local.mk 58 `find $$@ -maxdepth 1 -name testrun.sum 2>/dev/null | sort` > testrun.sum; \
60 `find $$@ -maxdepth 1 -name testrun.log 2>/dev/null | sort` > testrun.log; \
  /src/external/ibm-public/postfix/dist/examples/chroot-setup/
LINUX2 40 # restrict find to maxdepth 1 (faster)
55 lr=`find "$dir" -maxdepth 1 -name "$pat"`
  /src/external/bsd/libfido2/dist/man/
check.sh 9 find . -maxdepth 1 -type f -name '*.3' -print0 > "$T/files"
  /src/external/bsd/tmux/dist/
mode-tree.c 70 u_int maxdepth; member in struct:mode_tree_data
214 if (depth > mtd->maxdepth)
215 mtd->maxdepth = depth;
578 mtd->maxdepth = 0;
719 int keylen, pad, alignlen[mtd->maxdepth + 1];
743 for (i = 0; i < mtd->maxdepth + 1; i++)
  /src/external/gpl3/gcc/dist/maintainer-scripts/
update_web_docs_git 230 find $DOCSDIR -type f -maxdepth 1 -print | grep -v index.html | xargs rm
  /src/external/gpl3/gcc.old/dist/maintainer-scripts/
update_web_docs_git 222 find $DOCSDIR -type f -maxdepth 1 -print | grep -v index.html | xargs rm
update_web_docs_svn 220 find $DOCSDIR -type f -maxdepth 1 -print | grep -v index.html | xargs rm
  /src/external/mpl/bind/dist/lib/dns/include/dns/
resolver.h 526 dns_resolver_setmaxdepth(dns_resolver_t *resolver, unsigned int maxdepth);
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
resolver.h 691 dns_resolver_setmaxdepth(dns_resolver_t *resolver, unsigned int maxdepth);
  /src/usr.sbin/certctl/
certctl.sh 447 elif ! find -f "$certsdir" -- -maxdepth 0 -type d -empty -exit 1; then
  /src/external/gpl3/binutils/dist/gprofng/src/
PathTree.cc 2364 static int maxdepth; variable
2373 maxdepth = 0;
2377 (long long) maxdepth, (long long) maxwidth);
2385 if (lvl + 1 > maxdepth)
2386 maxdepth = lvl + 1;
CallStack.cc 1142 int maxdepth = 0; local
1170 fprintf (f, GTXT ("md = %d, mw = %d\n"), maxdepth, maxwidth);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
PathTree.cc 2364 static int maxdepth; variable
2373 maxdepth = 0;
2377 (long long) maxdepth, (long long) maxwidth);
2385 if (lvl + 1 > maxdepth)
2386 maxdepth = lvl + 1;
CallStack.cc 1142 int maxdepth = 0; local
1170 fprintf (f, GTXT ("md = %d, mw = %d\n"), maxdepth, maxwidth);
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_rar.c 2859 int maxdepth)
2876 currtablesize = 1 << (maxdepth - depth);
2898 if(depth == maxdepth)
2900 table[0].length = maxdepth + 1;
2906 depth + 1, maxdepth);
2908 table + currtablesize / 2, depth + 1, maxdepth);
  /src/external/mpl/dhcp/bind/dist/lib/dns/
resolver.c 558 unsigned int maxdepth; member in struct:dns_resolver
3771 if (fctx->depth > res->maxdepth) {
3775 "(depth=%u, maxdepth=%u)",
3776 fctx->info, fctx->depth, res->maxdepth);
10620 res->maxdepth = DEFAULT_RECURSION_DEPTH;
12005 dns_resolver_setmaxdepth(dns_resolver_t *resolver, unsigned int maxdepth) {
12007 resolver->maxdepth = maxdepth;
12013 return (resolver->maxdepth);
  /src/external/mpl/bind/dist/lib/dns/
resolver.c 581 unsigned int maxdepth; member in struct:dns_resolver
3496 if (fctx->depth > res->maxdepth) {
3500 "(depth=%u, maxdepth=%u)",
3501 fctx->info, fctx->depth, res->maxdepth);
10229 .maxdepth = DEFAULT_RECURSION_DEPTH,
11192 dns_resolver_setmaxdepth(dns_resolver_t *resolver, unsigned int maxdepth) {
11194 resolver->maxdepth = maxdepth;
11200 return resolver->maxdepth;
  /src/usr.sbin/postinstall/
postinstall.in 1780 -maxdepth 0 -type d -empty -exit 1)
  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-loop-ivopts.cc 1826 unsigned maxdepth = 0; local
1837 maxdepth = MAX (maxdepth, loop_depth (ivloop));
1840 return superloop_at_depth (loop, maxdepth);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-loop-ivopts.cc 1821 unsigned maxdepth = 0; local
1832 maxdepth = MAX (maxdepth, loop_depth (ivloop));
1835 return superloop_at_depth (loop, maxdepth);

Completed in 94 milliseconds

1 2