| /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...] |
| 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_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--;
|
| 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_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--;
|
| res_init.c | 180 int dots; local 489 dots = 0; 491 dots += (*cp == '.'); 495 if (dots < LOCALDOMAINPARTS) 499 dots--;
|
| /src/external/gpl2/rcs/dist/src/ |
| rcsrev.c | 698 int dots; local 718 dots = 0; 787 if (dots & 1) 794 ++dots;
|
| 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
|
| 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/sys/kern/ |
| subr_kobj.c | 1233 const char *d = name, *dots = ""; local 1246 len = (len - sizeof(ko->ko_name)) + 5; /* dots + NUL */ 1249 dots = "/..."; 1252 snprintf(ko->ko_name, sizeof(ko->ko_name), "%s%s%s", name, dots, d);
|
| subr_kobj.c | 1233 const char *d = name, *dots = ""; local 1246 len = (len - sizeof(ko->ko_name)) + 5; /* dots + NUL */ 1249 dots = "/..."; 1252 snprintf(ko->ko_name, sizeof(ko->ko_name), "%s%s%s", name, dots, d);
|
| /src/libexec/rshd/ |
| rshd.c | 787 int dots = 0; local 791 if (++dots == 2)
|
| 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
|
| 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
|
| 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)
|
| 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
|