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

12345

/freebsd-10.0-release/share/skel/
H A DMakefile5 FILES1= dot.cshrc dot.login dot.login_conf dot.mailrc dot.profile \
6 dot.shrc
7 FILES2= dot.mail_aliases dot.rhosts
/freebsd-10.0-release/share/misc/
H A DMakefile6 FILES= ascii birthtoken bsd-family-tree committers-doc.dot committers-ports.dot \
7 committers-src.dot eqnchar flowers init.ee \
10 organization.dot
/freebsd-10.0-release/usr.sbin/bsdconfig/dot/
H A DMakefile7 FILESDIR= ${LIBEXECDIR}/bsdconfig/dot
11 SCRIPTS= dot
/freebsd-10.0-release/share/examples/smbfs/
H A DMakefile5 FILES= dot.nsmbrc
/freebsd-10.0-release/usr.sbin/bsdconfig/dot/include/
H A DMakefile5 FILESDIR= ${LIBEXECDIR}/bsdconfig/dot/include
/freebsd-10.0-release/games/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-10.0-release/usr.bin/mail/
H A Dcmd1.c51 * Don't change dot if invoker didn't give an argument.
75 if (dot != &message[n-1])
76 dot = mp;
156 dot = &message[*ip - 1];
181 curind = dot == mp ? '>' : ' ';
208 * Print out the value of dot.
213 printf("%td\n", dot - &message[0] + 1);
323 dot = mp;
377 dot = mp;
404 dot
[all...]
H A Dcmd2.c52 * following dot, otherwise, go to the next applicable message.
65 * first applicable one following dot using
69 mdot = dot - &message[0] + 1;
73 * message list which follows dot.
85 dot = mp;
106 * Just find the next good message after dot, no
110 for (mp = dot+1; mp < &message[msgCount]; mp++)
117 dot = mp;
120 * Print dot.
123 list[0] = dot
[all...]
H A Dglob.h65 struct message *dot; /* Pointer to current message */ variable in typeref:struct:message
/freebsd-10.0-release/lib/libipsec/
H A Dpolicy_token.l65 dot \.
76 usec {dot}{digit}{1,6}
84 octetstring {octet}({dot}{octet})+
/freebsd-10.0-release/usr.sbin/rrenumd/
H A Dlexer.l74 dot \.
81 usec {dot}{digit}{1,6}
87 octetstring {octet}({dot}{octet})+
88 ipv4addr {digit}{1,3}({dot}{digit}{1,3}){0,3}
93 hostname {name}(({dot}{name})+{dot}?)?
/freebsd-10.0-release/contrib/amd/amq/
H A Dpawd.c96 char *to, *ch, *hes_name, *dot; local
139 dot = hes_name;
140 while (*dot && *dot != '.') dot++;
141 *dot = '\0';
/freebsd-10.0-release/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-10.0-release/crypto/heimdal/lib/roken/
H A Dgetnameinfo.c58 char *dot = strchr (host, '.'); local
59 if (dot != NULL)
60 *dot = '\0';
/freebsd-10.0-release/usr.sbin/bsdconfig/
H A DMakefile6 dot \
/freebsd-10.0-release/bin/date/
H A Ddate.c187 const char *dot, *t; local
204 for (t = p, dot = NULL; *t; ++t) {
207 if (*t == '.' && dot == NULL) {
208 dot = t;
214 if (dot != NULL) { /* .ss */
215 dot++; /* *dot++ = '\0'; */
216 if (strlen(dot) != 2)
218 lt->tm_sec = ATOI2(dot);
226 switch (strlen(p) - ((dot !
[all...]
/freebsd-10.0-release/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-10.0-release/bin/pax/
H A Dsel_subs.c333 int dot = 0; local
355 dot = 0;
360 * allow only one dot per range (secs)
362 if ((*stpt == '.') && (!dot)) {
363 ++dot;
540 char *dot = NULL; local
543 if ((dot = strchr(str, '.')) != NULL) {
547 *dot++ = '\0';
548 if (strlen(dot) != 2)
550 if ((lt->tm_sec = ATOI2(dot)) > 6
[all...]
/freebsd-10.0-release/contrib/binutils/gas/
H A Dsubsegs.h82 symbolS *dot; member in struct:segment_info_struct
/freebsd-10.0-release/contrib/libarchive/cpio/
H A Dcpio.h54 int dot; /* -V */ member in struct:cpio
/freebsd-10.0-release/usr.sbin/ngctl/
H A DMakefile8 SRCS= main.c mkpeer.c config.c connect.c dot.c name.c show.c list.c \
/freebsd-10.0-release/sbin/setkey/
H A Dtoken.l74 dot \.
87 hostname {name}(({dot}{name})+{dot}?)?
/freebsd-10.0-release/contrib/amd/amd/
H A Dget_args.c234 char *dot = strchr(optarg, '.'); local
236 if (dot)
237 *dot = '\0';
242 if (dot) {
244 gopt.amfs_auto_retrans[i] = atoi(dot + 1);
245 *dot = '.';
/freebsd-10.0-release/contrib/bmake/
H A Ddir.c96 * Dir_InitDot Set the dot Path.
233 static Path *dot; /* contents of current directory */ variable
234 static Path *cur; /* contents of current directory, if not dot */
317 * (re)initialize "dot" (current/object directory) path hash
329 if (dot != NULL) {
333 ln = Lst_Member(openDirectories, dot);
337 dot = Dir_AddDir(NULL, ".");
339 if (dot == NULL) {
345 * We always need to have dot around, so we increment its reference count
348 dot
[all...]
/freebsd-10.0-release/lib/libstand/
H A Dprintf.c161 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
189 sign = 0; dot = 0; dwidth = 0; upper = 0;
193 dot = 1;
208 if (!dot) {
219 if (!dot) {
231 if (dot)
335 if (!dot)

Completed in 221 milliseconds

12345