HomeSort by: relevance | last modified time | path
    Searched defs:dots (Results 1 - 22 of 22) sorted by relevancy

  /src/external/bsd/nsd/dist/simdzone/src/generic/
name.h 15 uint64_t dots; member in struct:name_block
26 block->dots = simd_find_8x32(&input, '.');
59 if (unlikely(block.dots & 1llu))
63 block.dots &= mask;
64 carry = (block.dots >> (length - 1));
67 if (unlikely(block.dots & (block.dots >> 1)))
70 if (likely(block.dots)) {
71 count = trailing_zeroes(block.dots);
72 block.dots = clear_lowest_bit(block.dots)
    [all...]
  /src/lib/libc/resolv/
res_query.c 253 u_int dots; local
261 dots = 0;
263 dots += (*cp == '.');
268 /* If there aren't any dots, it could be a user-level alias. */
269 if (!dots && (cp = res_hostalias(statp, name, tmp, sizeof tmp))!= NULL)
273 * If there are enough dots in the name, let's just give it a
278 if (dots >= statp->ndots || trailing_dot) {
293 if ((!dots && (statp->options & RES_DEFNAMES) != 0U) ||
294 (dots && !trailing_dot && (statp->options & RES_DNSRCH) != 0U)) {
359 * unless RES_NOTLDQUERY is set and there were no dots
    [all...]
res_init.c 222 int dots; local
542 dots = 0;
544 dots += (*cp == '.');
548 if (dots < LOCALDOMAINPARTS)
552 dots--;
  /src/external/bsd/libbind/dist/resolv/
res_query.c 223 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...]
res_init.c 180 int dots; local
489 dots = 0;
491 dots += (*cp == '.');
495 if (dots < LOCALDOMAINPARTS)
499 dots--;
  /src/sys/kern/
subr_kobj.c 1214 const char *d = name, *dots = ""; local
1227 len = (len - sizeof(ko->ko_name)) + 5; /* dots + NUL */
1230 dots = "/...";
1233 snprintf(ko->ko_name, sizeof(ko->ko_name), "%s%s%s", name, dots, d);
  /src/external/gpl2/rcs/dist/src/
rcsrev.c 698 int dots; local
718 dots = 0;
787 if (dots & 1)
794 ++dots;
  /src/external/gpl2/xcvs/dist/lib/
getcwd.c 144 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
  /src/libexec/rshd/
rshd.c 787 int dots = 0; local
791 if (++dots == 2)
  /src/external/gpl3/gdb/dist/gnulib/import/
getcwd.c 178 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
  /src/external/gpl3/gdb.old/dist/gnulib/import/
getcwd.c 178 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
  /src/libexec/rlogind/
rlogind.c 742 int dots = 0; local
746 if (++dots == 2)
  /src/external/bsd/pcc/dist/pcc/f77/fcom/
lex.c 94 LOCAL struct dotlist dots[]; variable in typeref:struct:dotlist
743 for(pd=dots ; (j=pd->dotname) ; ++pd)
891 LOCAL struct dotlist dots[ ] =
889 LOCAL struct dotlist dots[ ] = variable in typeref:struct:dotlist
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
v3_utl.c 740 int dots = 0; local
755 if (star != NULL || (state & LABEL_IDNA) != 0 || dots)
777 ++dots;
790 * there must be at least two dots after the star.
792 if ((state & (LABEL_START | LABEL_HYPHEN)) != 0 || dots < 2)
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
v3_utl.c 748 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)
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
v3_utl.c 737 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)
  /src/external/apache2/mDNSResponder/nss/
nss_mdnsd.c 944 int dots = 0, enddot = 0; local
960 dots++;
969 if (dots) {
971 if ((dots - enddot) == 1) {
985 if (dots >= iter->conf->ndots) {
  /src/external/gpl2/xcvs/dist/src/
subr.c 205 * 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 & 1) == 0
    [all...]
rcs.c 1871 /* 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 = numdots (version)
2611 int dots; local
2819 int dots, isrevnum, brlen; local
5308 int dots, isrevnum; local
    [all...]
  /src/lib/libc/net/
getaddrinfo.c 2686 u_int dots; local
2698 dots = 0;
2700 dots += (*cp == '.');
2706 * if there aren't any dots, it could be a user-level alias
2708 if (!dots && (cp = res_hostalias(res, name, buf, sizeof(buf))) != NULL) {
2714 * If there are dots in the name already, let's just give it a try
2718 if (dots >= res->ndots) {
2732 if ((!dots && (res->options & RES_DEFNAMES)) ||
2733 (dots && !trailing_dot && (res->options & RES_DNSRCH))) {
2791 * note that we do this regardless of how many dots were in th
    [all...]
  /src/usr.bin/make/unit-tests/
Makefile 312 TESTS+= sh-dots
562 SED_CMDS.sh-dots= -e 's,^.*\.\.\.:.*,<not found: ...>,'
564 SED_CMDS.sh-dots+= -e 's,^make: exec(\(.*\)): .*$$,<not found: \1>,'
565 SED_CMDS.sh-dots+= -e 's,^\(\*\*\* Error code \)[1-9][0-9]*,\1<nonzero>,'
  /src/usr.sbin/mtrace/
mtrace.c 188 int i, dots = 3; local
198 if (*ip == '.') --dots;
200 else if (!isdigit((unsigned char)*ip)) dots = 0; /* Not numeric, don't add zeroes */
203 for (i = 0; i < dots; ++i) {
209 if (dots <= 0) e = gethostbyname(name);

Completed in 3319 milliseconds