Searched refs:dots (Results 1 - 25 of 57) sorted by relevance

123

/netbsd-current/external/gpl2/rcs/dist/src/
H A Dconf.sh71 ech='echo' dots='... \c';;
73 ech='echo -n' dots='... '
76 $ech >&3 "$0: testing permissions $dots"
87 $ech >&3 "$0: testing compiler for plausibility $dots"
102 $ech >&3 "$0: configuring exitmain $dots"
112 $ech >&3 "$0: attempting to work around Domain/OS brain damage $dots"
155 $ech >&3 "$0: configuring $id $dots"
206 $ech >&3 "$0: configuring how to check for syntax errors $dots"
250 $ech >&3 "$0: configuring $i $dots"
281 $ech >&3 "$0: configuring has_sys_param_h $dots"
[all...]
H A Drcsrev.c698 int dots; local
718 dots = 0;
787 if (dots & 1)
794 ++dots;
/netbsd-current/external/bsd/libbind/dist/resolv/
H A Dres_query.c223 u_int dots; local
231 dots = 0;
233 dots += (*cp == '.');
238 /* If there aren't any dots, it could be a user-level alias. */
239 if (!dots && (cp = res_hostalias(statp, name, tmp, sizeof tmp))!= NULL)
243 * If there are enough dots in the name, let's just give it a
248 if (dots >= statp->ndots || trailing_dot) {
263 if ((!dots && (statp->options & RES_DEFNAMES) != 0U) ||
264 (dots && !trailing_dot && (statp->options & RES_DNSRCH) != 0U)) {
329 * unless RES_NOTLDQUERY is set and there were no dots
[all...]
H A Dres_init.c180 int dots; local
489 dots = 0;
491 dots += (*cp == '.');
495 if (dots < LOCALDOMAINPARTS)
499 dots--;
/netbsd-current/external/bsd/openldap/dist/contrib/slapd-modules/datamorph/tests/data/
H A Ddatamorph.conf30 datamorph_value 12 dots
/netbsd-current/lib/libc/resolv/
H A Dres_query.c255 u_int dots; local
263 dots = 0;
265 dots += (*cp == '.');
270 /* If there aren't any dots, it could be a user-level alias. */
271 if (!dots && (cp = res_hostalias(statp, name, tmp, sizeof tmp))!= NULL)
275 * If there are enough dots in the name, let's just give it a
280 if (dots >= statp->ndots || trailing_dot) {
295 if ((!dots && (statp->options & RES_DEFNAMES) != 0U) ||
296 (dots && !trailing_dot && (statp->options & RES_DNSRCH) != 0U)) {
361 * unless RES_NOTLDQUERY is set and there were no dots
[all...]
H A Dres_init.c222 int dots; local
542 dots = 0;
544 dots += (*cp == '.');
548 if (dots < LOCALDOMAINPARTS)
552 dots--;
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dgetcwd.c144 char dots[DEEP_NESTING * sizeof ".." + BIG_FILE_NAME_COMPONENT_LENGTH + 1];
145 char *dotlist = dots;
146 size_t dotsize = sizeof dots;
283 if (dotlist != dots)
370 if (dotlist != dots)
399 if (dotlist != dots)
143 char dots[DEEP_NESTING * sizeof ".." + BIG_FILE_NAME_COMPONENT_LENGTH + 1]; local
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dgetcwd.c161 char dots[DEEP_NESTING * sizeof ".." + BIG_FILE_NAME_COMPONENT_LENGTH + 1];
162 char *dotlist = dots;
163 size_t dotsize = sizeof dots;
361 if (dotlist != dots)
438 if (dotlist != dots)
467 if (dotlist != dots)
160 char dots[DEEP_NESTING * sizeof ".." + BIG_FILE_NAME_COMPONENT_LENGTH + 1]; local
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dgetcwd.c178 char dots[DEEP_NESTING * sizeof ".." + BIG_FILE_NAME_COMPONENT_LENGTH + 1];
179 char *dotlist = dots;
180 size_t dotsize = sizeof dots;
377 if (dotlist != dots)
454 if (dotlist != dots)
483 if (dotlist != dots)
177 char dots[DEEP_NESTING * sizeof ".." + BIG_FILE_NAME_COMPONENT_LENGTH + 1]; local
/netbsd-current/tests/fs/tmpfs/
H A Dt_readdir.sh32 atf_test_case dots
112 atf_add_test_case dots
H A Dt_rmdir.sh96 atf_test_case dots
199 atf_add_test_case dots
H A Dt_rename.sh33 atf_test_case dots
269 atf_add_test_case dots
/netbsd-current/external/gpl3/gcc.old/dist/fixincludes/
H A Dfixinc.in320 dots=`echo "${sym_link}" |
323 then echo ${sym_link} '->' $dots$y ': Making local link' ; fi
325 ln -s $dots$y ${LIB}/${sym_link} > /dev/null 2>&1
380 dots=`echo "$file2" | sed -e 's@/[^/]*@../@g'`
382 ln -s ${dots}root${full_dest_dir} ${LIB}/${sym_link} > /dev/null 2>&1
/netbsd-current/external/gpl3/gcc/dist/fixincludes/
H A Dfixinc.in319 dots=`echo "${sym_link}" |
322 then echo ${sym_link} '->' $dots$y ': Making local link' ; fi
324 ln -s $dots$y ${LIB}/${sym_link} > /dev/null 2>&1
379 dots=`echo "$file2" | sed -e 's@/[^/]*@../@g'`
381 ln -s ${dots}root${full_dest_dir} ${LIB}/${sym_link} > /dev/null 2>&1
/netbsd-current/external/gpl2/xcvs/dist/src/
H A Dsubr.c205 * Returns the number of dots ('.') found in an RCS revision number
210 int dots = 0; local
215 dots++;
217 return (dots);
382 /* Our retval can have no more digits and dots than our input revision. */
422 int dots; local
434 /* The greatest common ancestor will have no more dots, and numbers
462 dots = numdots (gca);
463 if (dots == 0)
483 else if ((dots
[all...]
H A Drcs.c1871 /* Legitimate ID characters are digits, dots and any `graphic
2338 int dots; local
2348 dots = numdots (tag);
2349 if (dots > 2 && (dots & 1) != 0)
2396 /* strip trailing dots */
2537 /* numeric revisions are easy -- even number of dots is a branch */
2559 int dots; local
2564 /* numeric revisions are easy -- even number of dots is a branch */
2571 dots
2611 int dots; local
2819 int dots, isrevnum, brlen; local
5308 int dots, isrevnum; local
[all...]
/netbsd-current/external/gpl2/xcvs/dist/doc/
H A Dmkman.pl144 s/\@dots({}|\b)/\\&.../g;
/netbsd-current/external/apache2/mDNSResponder/nss/
H A Dnss_mdnsd.c944 int dots = 0, enddot = 0; local
960 dots++;
969 if (dots) {
971 if ((dots - enddot) == 1) {
985 if (dots >= iter->conf->ndots) {
/netbsd-current/external/gpl3/gcc.old/dist/gcc/doc/
H A Dmakefile.texi122 @item stage@var{N}-bubble (@var{N} = 1@dots{}4, profile, feedback)
126 @item all-stage@var{N} (@var{N} = 1@dots{}4, profile, feedback)
147 @item stage@var{N}-start (@var{N} = 1@dots{}4, profile, feedback)
/netbsd-current/external/gpl3/gcc/dist/gcc/doc/
H A Dmakefile.texi122 @item stage@var{N}-bubble (@var{N} = 1@dots{}4, profile, feedback)
126 @item all-stage@var{N} (@var{N} = 1@dots{}4, profile, feedback)
147 @item stage@var{N}-start (@var{N} = 1@dots{}4, profile, feedback)
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
H A Dv3_utl.c737 int dots = 0; local
751 if (star != NULL || (state & LABEL_IDNA) != 0 || dots)
773 ++dots;
785 * there must be at least two dots after the star.
787 if ((state & (LABEL_START | LABEL_HYPHEN)) != 0 || dots < 2)
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dv3_utl.c748 int dots = 0; local
763 if (star != NULL || (state & LABEL_IDNA) != 0 || dots)
785 ++dots;
798 * there must be at least two dots after the star.
800 if ((state & (LABEL_START | LABEL_HYPHEN)) != 0 || dots < 2)
/netbsd-current/libexec/rlogind/
H A Drlogind.c742 int dots = 0; local
746 if (++dots == 2)
/netbsd-current/libexec/rshd/
H A Drshd.c787 int dots = 0; local
791 if (++dots == 2)

Completed in 292 milliseconds

123