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

1234567891011>>

/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dget_domainname.c51 const char *dot; local
59 if ((dot = strchr(host, '.')) == 0 || strchr(dot + 1, '.') == 0) {
62 my_domain_name = mystrdup(dot + 1);
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dcurl_gethostname.c62 char* dot;
93 dot = strchr(name, '.');
94 if(dot)
95 *dot = '\0';
/macosx-10.10.1/vim-55/runtime/compiler/
H A Ddot.vim2 " Compiler: ATT dot
9 let current_compiler = "dot"
15 CompilerSet makeprg=dot\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"
H A Djikes.vim3 " Maintainer: Dan Sharp <dwsharp at hotmail dot com>
/macosx-10.10.1/tcl-105/tcl/tcl/unix/
H A DtclUnixSock.c62 char *dot = strchr(u.nodename, '.');
64 if (dot != NULL) {
65 char *node = ckalloc((unsigned) (dot - u.nodename + 1));
67 memcpy(node, u.nodename, (size_t) (dot - u.nodename));
68 node[dot - u.nodename] = '\0';
61 char *dot = strchr(u.nodename, '.'); local
/macosx-10.10.1/tcl-105/tcl84/tcl/unix/
H A DtclUnixSock.c94 char *dot = strchr(u.nodename, '.');
95 if (dot != NULL) {
96 char *node = ckalloc((unsigned) (dot - u.nodename + 1));
97 memcpy(node, u.nodename, (size_t) (dot - u.nodename));
98 node[dot - u.nodename] = '\0';
93 char *dot = strchr(u.nodename, '.'); local
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dlocalcharset.c317 /* If the locale name contains an encoding after the dot, return
319 const char *dot = strchr (locale, '.'); local
321 if (dot != NULL)
325 dot++;
327 modifier = strchr (dot, '@');
329 return dot;
330 if (modifier - dot < sizeof (buf))
332 memcpy (buf, dot, modifier - dot);
333 buf [modifier - dot]
402 const char *dot = strchr (locale, '.'); local
[all...]
/macosx-10.10.1/libiconv-42/libiconv/libcharset/lib/
H A Dlocalcharset.c324 /* If the locale name contains an encoding after the dot, return
326 const char *dot = strchr (locale, '.'); local
328 if (dot != NULL)
332 dot++;
334 modifier = strchr (dot, '@');
336 return dot;
337 if (modifier - dot < sizeof (buf))
339 memcpy (buf, dot, modifier - dot);
340 buf [modifier - dot]
409 const char *dot = strchr (locale, '.'); local
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/bigdecimal/lib/bigdecimal/
H A Dludcmp.rb71 dot = zero
74 dot = a[psin+j].mult(x[j],prec) + dot
76 x <<= b[ps[i]] - dot
79 dot = zero
82 dot = a[psin+j].mult(x[j],prec) + dot
84 x[i] = (x[i]-dot).div(a[psin+i],prec)
/macosx-10.10.1/gpatch-3/patch/
H A Daddext.c93 char *dot = strchr (s, '.'); local
94 if (dot)
96 slen -= dot + 1 - s;
97 s = dot + 1;
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dpascal.vim3 " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net>
H A Dxslt.vim3 " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net>
H A Dcsc.vim3 " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net>
H A Dmatlab.vim3 " Maintainer: Jake Wasserman <jwasserman at gmail dot com>
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/libipsec/
H A Dpolicy_token.l71 dot \.
83 usec {dot}{digit}{1,6}
91 octetstring {octet}({dot}{octet})+
/macosx-10.10.1/procmail-14/procmail/src/
H A Dexopen.c57 static time_t t;char*dot,*end,*host;struct stat filebuf; local
67 dot=p;
69 *p=UNIQ_PREFIX,dot=ultoan((unsigned long)thepid,p+1);
80 { dot=ultstr(0,(unsigned long)t,p); /* time.pid_s.hostname */
81 *dot='.';
82 dot=ultstr(0,(unsigned long)thepid,dot+1);
83 *dot++='_';
84 host=dot+2;
87 host=1+ultoan((unsigned long)t,dot
[all...]
/macosx-10.10.1/mail_cmds-30/mail/
H A Dcmd1.c58 * Don't change dot if invoker didn't give an argument.
83 if (dot != &message[n-1])
84 dot = mp;
166 dot = &message[*ip - 1];
192 curind = dot == mp ? '>' : ' ';
219 * Print out the value of dot.
224 printf("%ld\n", (uintptr_t)dot - (uintptr_t)&message[0] + 1);
340 dot = mp;
396 dot = mp;
424 dot
[all...]
H A Dcmd2.c59 * following dot, otherwise, go to the next applicable message.
73 * first applicable one following dot using
77 mdot = dot - &message[0] + 1;
81 * message list which follows dot.
96 dot = mp;
117 * Just find the next good message after dot, no
121 for (mp = dot+1; mp < &message[msgCount]; mp++)
128 dot = mp;
131 * Print dot.
134 list[0] = dot
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dmodule.c142 char *dot = strchr( name, '.'); local
143 if (dot) *dot = '\0';
145 if (dot) *dot = '.';
153 char *dot = strchr( file_name, '.' ); local
154 if ( dot ) *dot = '\0';
156 if ( dot ) *dot
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dgetnameinfo.c58 char *dot = strchr (host, '.'); local
59 if (dot != NULL)
60 *dot = '\0';
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/intl/
H A Dlocalcharset.c339 /* If the locale name contains an encoding after the dot, return it. */
340 const char *dot = strchr (locale, '.'); local
342 if (dot != NULL)
346 dot++;
348 modifier = strchr (dot, '@');
350 return dot;
351 if (modifier - dot < sizeof (buf))
353 memcpy (buf, dot, modifier - dot);
354 buf [modifier - dot]
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/intl/
H A Dlocalcharset.c339 /* If the locale name contains an encoding after the dot, return it. */
340 const char *dot = strchr (locale, '.'); local
342 if (dot != NULL)
346 dot++;
348 modifier = strchr (dot, '@');
350 return dot;
351 if (modifier - dot < sizeof (buf))
353 memcpy (buf, dot, modifier - dot);
354 buf [modifier - dot]
[all...]
/macosx-10.10.1/shell_cmds-179/date/
H A Ddate.c215 const char *dot, *t; local
231 for (t = p, dot = NULL; *t; ++t) {
234 if (*t == '.' && dot == NULL) {
235 dot = t;
243 if (dot != NULL) { /* .ss */
244 dot++; /* *dot++ = '\0'; */
245 if (strlen(dot) != 2)
247 lt->tm_sec = ATOI2(dot);
255 switch (length = strlen(p) - ((dot !
[all...]
/macosx-10.10.1/file_cmds-242/pax/
H A Dsel_subs.c331 int dot = 0; local
353 dot = 0;
358 * allow only one dot per range (secs)
360 if ((*stpt == '.') && (!dot)) {
361 ++dot;
538 const char *dot, *t; local
546 for (t = p, dot = NULL; *t; ++t) {
549 if (*t == '.' && dot == NULL) {
550 dot = t;
558 if (dot !
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dcoff-w65.c125 bfd_vma dot; local
167 dot = input_section->output_section->vma +
173 gap = value - dot;
189 dot = input_section->output_section->vma +
195 gap = value - (dot - shrink);
319 bfd_vma dot = (dst_address local
323 gap -= dot + 1;
343 bfd_vma dot = (dst_address local
349 if ((gap & 0xf0000) != (dot & 0xf0000))
359 gap -= dot
[all...]

Completed in 483 milliseconds

1234567891011>>