Searched refs:dot (Results 1 - 25 of 124) sorted by relevance

12345

/freebsd-13-stable/share/skel/
H A DMakefile4 FILES= dot.cshrc dot.login dot.login_conf dot.mailrc dot.profile \
5 dot.shrc dot.mail_aliases
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dcond-func-make-main.exp1 : Making dot-main-target-1a.
2 : Making dot-main-target-1b.
H A Dcond-func-make.exp2 : via-dot-makeflags
H A DMakefile378 TESTS+= varname-dot-alltargets
379 TESTS+= varname-dot-curdir
380 TESTS+= varname-dot-includes
381 TESTS+= varname-dot-includedfromdir
382 TESTS+= varname-dot-includedfromfile
383 TESTS+= varname-dot-libs
384 TESTS+= varname-dot-make-dependfile
385 TESTS+= varname-dot-make-expand_variables
386 TESTS+= varname-dot-make-exported
387 TESTS+= varname-dot
[all...]
/freebsd-13-stable/usr.sbin/bsdconfig/dot/
H A DMakefile5 FILESDIR= ${LIBEXECDIR}/bsdconfig/dot
9 SCRIPTS= dot
/freebsd-13-stable/share/misc/
H A DMakefile8 FILES= ascii birthtoken bsd-family-tree committers-doc.dot committers-ports.dot \
9 committers-src.dot flowers init.ee \
12 organization.dot
/freebsd-13-stable/usr.sbin/bsdconfig/dot/include/
H A DMakefile3 FILESDIR= ${LIBEXECDIR}/bsdconfig/dot/include
/freebsd-13-stable/share/examples/smbfs/
H A DMakefile5 FILES= dot.nsmbrc
/freebsd-13-stable/usr.bin/caesar/
H A Dcaesar.c81 int ch, dot, i, nread, winnerdot = 0; local
115 * now "dot" the freqs with the observed letter freqs
119 dot = 0;
121 dot += obs[i] * stdf[(i + try) % 26];
124 winnerdot = dot;
125 if (dot > winnerdot) {
128 winnerdot = dot;
/freebsd-13-stable/contrib/netbsd-tests/modules/k_helper3/
H A Dk_helper3.c61 char filename[MAXPATHLEN], *propsstr, *shortname, *dot; local
94 dot = strrchr(shortname, '.');
95 if (dot)
96 *dot = 0;
/freebsd-13-stable/lib/libipsec/
H A Dpolicy_token.l67 dot \.
78 usec {dot}{digit}{1,6}
86 octetstring {octet}({dot}{octet})+
/freebsd-13-stable/contrib/ntp/libntp/
H A Ddecodenetnum.c112 char *dot = strchr(haddr, '.'); local
113 if (col == dot) {
114 /* no dot, no colon: bad! */
117 /* no colon, only dot: IPv4! */
119 } else if (!dot || col < dot) {
120 /* no dot or 1st colon before 1st dot: IPv6! */
123 /* 1st dot before 1st colon: must be IPv4 with port */
/freebsd-13-stable/usr.sbin/bsdconfig/
H A DMakefile8 dot \
/freebsd-13-stable/usr.sbin/rrenumd/
H A Dlexer.l73 dot \.
80 usec {dot}{digit}{1,6}
86 octetstring {octet}({dot}{octet})+
87 ipv4addr {digit}{1,3}({dot}{digit}{1,3}){0,3}
92 hostname {name}(({dot}{name})+{dot}?)?
/freebsd-13-stable/usr.bin/mail/
H A Dcmd2.c54 * following dot, otherwise, go to the next applicable message.
68 * first applicable one following dot using
72 mdot = dot - &message[0] + 1;
76 * message list which follows dot.
88 dot = mp;
109 * Just find the next good message after dot, no
113 for (mp = dot+1; mp < &message[msgCount]; mp++)
120 dot = mp;
123 * Print dot.
126 list[0] = dot
[all...]
H A Dcmd1.c51 * Don't change dot if invoker didn't give an argument.
76 if (dot != &message[n-1])
77 dot = mp;
159 dot = &message[*ip - 1];
184 curind = dot == mp ? '>' : ' ';
211 * Print out the value of dot.
216 printf("%td\n", dot - &message[0] + 1);
331 dot = mp;
386 dot = mp;
414 dot
[all...]
H A Dglob.h67 extern struct message *dot; /* Pointer to current message */
/freebsd-13-stable/usr.bin/bmake/unit-tests/
H A DMakefile382 TESTS+= varname-dot-alltargets
383 TESTS+= varname-dot-curdir
384 TESTS+= varname-dot-includes
385 TESTS+= varname-dot-includedfromdir
386 TESTS+= varname-dot-includedfromfile
387 TESTS+= varname-dot-libs
388 TESTS+= varname-dot-make-dependfile
389 TESTS+= varname-dot-make-expand_variables
390 TESTS+= varname-dot-make-exported
391 TESTS+= varname-dot
[all...]
/freebsd-13-stable/contrib/openpam/lib/libpam/
H A Dopenpam_dynamic.c185 int dot, len; local
233 *path, modname, &dot);
236 *path, modname, &dot, LIB_MAJ);
239 *path, modname, PAM_SOEXT, &dot, LIB_MAJ);
248 if (errno == ENOENT && modpath[dot] != '\0') {
250 modpath[dot] = '\0';
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dgetnameinfo.c58 char *dot = strchr (host, '.'); local
59 if (dot != NULL)
60 *dot = '\0';
/freebsd-13-stable/bin/date/
H A Ddate.c257 const char *dot, *t; local
276 for (t = p, dot = NULL; *t; ++t) {
279 if (*t == '.' && dot == NULL) {
280 dot = t;
286 if (dot != NULL) { /* .ss */
287 dot++; /* *dot++ = '\0'; */
288 if (strlen(dot) != 2)
290 lt->tm_sec = ATOI2(dot);
298 switch (strlen(p) - ((dot !
[all...]
/freebsd-13-stable/usr.sbin/ngctl/
H A DMakefile8 SRCS= main.c mkpeer.c config.c connect.c dot.c name.c show.c list.c \
/freebsd-13-stable/crypto/heimdal/appl/ftp/ftp/
H A Druserpass.c77 char *dot; local
83 dot = strchr (hostname_str, '.');
84 if (dot != NULL)
85 return dot + 1;
100 dot = strchr (hostname_str, '.');
101 if (dot != NULL)
102 return dot + 1;
/freebsd-13-stable/bin/pax/
H A Dsel_subs.c334 int dot = 0; local
356 dot = 0;
361 * allow only one dot per range (secs)
363 if ((*stpt == '.') && (!dot)) {
364 ++dot;
541 char *dot = NULL; local
544 if ((dot = strchr(str, '.')) != NULL) {
548 *dot++ = '\0';
549 if (strlen(dot) != 2)
551 if ((lt->tm_sec = ATOI2(dot)) > 6
[all...]
/freebsd-13-stable/contrib/libarchive/cpio/
H A Dcpio.h54 int dot; /* -V */ member in struct:cpio

Completed in 297 milliseconds

12345