HomeSort by: relevance | last modified time | path
    Searched defs:dot (Results 1 - 25 of 189) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/ibm-public/postfix/dist/src/util/
get_domainname.c 53 const char *dot; local
61 if ((dot = strchr(host, '.')) == 0 || strchr(dot + 1, '.') == 0) {
64 my_domain_name = mystrdup(dot + 1);
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
getnameinfo.c 60 char *dot = strchr (host, '.'); local
61 if (dot != NULL)
62 *dot = '\0';
  /src/external/bsd/pkg_install/dist/lib/
str.c 53 const char *dot; local
55 return ((dot = strrchr(basename_of(str), '.')) == NULL) ? "" : dot + 1;
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
addext.c 78 char *dot = strchr (s, '.'); local
79 if (dot)
81 slen -= dot + 1 - s;
82 s = dot + 1;
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
addext.c 78 char *dot = strchr (s, '.'); local
79 if (dot)
81 slen -= dot + 1 - s;
82 s = dot + 1;
  /src/tests/modules/k_helper3/
k_helper3.c 61 char filename[MAXPATHLEN], *propsstr, *shortname, *dot; local
94 dot = strrchr(shortname, '.');
95 if (dot)
96 *dot = 0;
  /src/usr.bin/audio/common/
decode.c 79 char *s, *colon, *dot; local
104 if ((dot = strchr(s, '.')) != NULL) {
107 *dot++ = '\0';
110 if (!dot[i])
112 if (!isdigit((unsigned char)dot[i]))
114 tvp->tv_usec += base * (dot[i] - '0');
  /src/external/apache2/llvm/dist/llvm/utils/
extract_vplan.py 4 # and saves them in individual dot files (one for each plan). Optionally, and
5 # providing 'dot' is installed, it can also render the dot into a PNG file.
19 dot = shutil.which('dot') variable
20 if args.png and not dot:
21 raise RuntimeError("Can't export to PNG without 'dot' in the system")
34 print("Exporting " + name + " to PNG via dot: " + filename)
35 p = subprocess.Popen([dot, '-Tpng', '-o', filename],
42 raise RuntimeError("Error running dot: " + err
    [all...]
  /src/external/bsd/ntp/dist/libntp/
decodenetnum.c 114 char *dot = strchr(haddr, '.'); local
115 if (col == dot) {
116 /* no dot, no colon: bad! */
119 /* no colon, only dot: IPv4! */
121 } else if (!dot || col < dot) {
122 /* no dot or 1st colon before 1st dot: IPv6! */
125 /* 1st dot before 1st colon: must be IPv4 with port */
  /src/usr.sbin/mtree/
verify.c 85 char dot[] = "."; local
86 argv[0] = dot;
  /src/external/bsd/openpam/dist/lib/libpam/
openpam_dynamic.c 188 int dot, len; local
236 *path, modname, &dot);
239 *path, modname, &dot, LIB_MAJ);
242 *path, modname, PAM_SOEXT, &dot, LIB_MAJ);
251 if (errno == ENOENT && modpath[dot] != '\0') {
253 modpath[dot] = '\0';
  /src/bin/pax/
sel_subs.c 341 int dot = 0; local
363 dot = 0;
368 * allow only one dot per range (secs)
370 if ((*stpt == '.') && (!dot)) {
371 ++dot;
551 const char *dot, *t; local
554 for (t = p, dot = NULL; *t; ++t) {
557 if (*t == '.' && dot == NULL) {
558 dot = t;
566 if (dot != NULL)
    [all...]
  /src/games/caesar/
caesar.c 132 double dot, winnerdot; local
153 * now "dot" the freqs with the observed letter freqs
159 dot = 0.0;
161 dot += (obs[upper[i]] + obs[lower[i]])
164 if (try == 0 || dot > winnerdot) {
167 winnerdot = dot;
  /src/sys/compat/freebsd/
freebsd_sysctl.c 188 char *dot; local
195 if ((dot = strchr(name, (int)'.')) != NULL)
196 *dot++ = '\0';
203 if ((name = dot) == NULL) {
207 if ((dot = strchr(name, (int)'.')) != NULL)
208 *dot++ = '\0';
  /src/usr.bin/realpath/
realpath.c 58 char dot[] = "."; variable
90 path = *argv != NULL ? *argv++ : dot;
  /src/external/bsd/am-utils/dist/amd/
get_args.c 232 char *dot = strchr(optarg, '.'); local
234 if (dot)
235 *dot = '\0';
240 if (dot) {
242 gopt.amfs_auto_retrans[i] = atoi(dot + 1);
243 *dot = '.';
  /src/external/bsd/am-utils/dist/amq/
pawd.c 94 char *to, *ch, *hes_name, *dot; local
137 dot = hes_name;
138 while (*dot && *dot != '.') dot++;
139 *dot = '\0';
  /src/external/bsd/kyua-cli/dist/utils/format/
formatter.cpp 138 const std::string::size_type dot = partial.find('.'); local
139 if (dot != 0)
140 output->width(to_int(format, partial.substr(0, dot), "width"));
141 if (dot != std::string::npos) {
143 output->precision(to_int(format, partial.substr(dot + 1),
  /src/external/gpl2/gettext/dist/gettext-tools/src/
hostname.c 316 char *dot; local
332 /* Print only the part before the first dot. */
333 dot = strchr (hostname, '.');
334 if (dot != NULL)
335 *dot = '\0';
  /src/external/gpl3/binutils/dist/gprof/
source.c 211 char *dot = strrchr (fname, '.'); local
213 if (!dot)
214 dot = fname + strlen (filename);
215 strcpy (dot, ".ann");
  /src/external/gpl3/binutils.old/dist/gprof/
source.c 211 char *dot = strrchr (fname, '.'); local
213 if (!dot)
214 dot = fname + strlen (filename);
215 strcpy (dot, ".ann");
  /src/bin/date/
date.c 355 const char *dot, *t, *op; local
394 for (t = p, dot = NULL; *t; ++t) {
396 if (dot == NULL) {
397 dot = t;
399 badcanotime("Unexpected dot", p, t - p);
407 if (dot != NULL) { /* .ss */
408 len = strlen(dot);
416 ++dot;
417 lt->tm_sec = ATOI2(dot);
  /src/lib/libc/gen/
sysctlgetmibinfo.c 417 const char *piece, *dot; local
464 if ((dot = strpbrk(gname, "./")) == NULL)
467 sep[0] = dot[0];
488 dot = strchr(piece, sep[0]);
489 if (dot == NULL) {
497 else if (dot - piece > (intptr_t)(sizeof(token) - 1)) {
503 strncpy(token, piece, (size_t)(dot - piece));
504 token[dot - piece] = '\0';
574 piece = (dot != NULL) ? dot + 1 : NULL
    [all...]
  /src/usr.bin/nbsvtool/
nbsvtool.c 389 char *dot; local
397 dot = strrchr(file, '.');
398 if (dot == NULL || strchr(dot, '/') != NULL)
401 if (strcmp(".sp7", dot) != 0)
403 "File name bad suffix (%s)", dot);
404 *dot = '\0';
  /src/external/bsd/openldap/dist/libraries/libldap/
filter.c 79 int dot=0; local
82 dot=0;
85 if( ++dot > 1 ) return 0;
91 return !dot;
115 int dot=0; local
118 if( dot ) return 0;
124 dot=0;
127 if( ++dot > 1 ) return 0;
133 return !dot;

Completed in 48 milliseconds

1 2 3 4 5 6 7 8