Home
last modified time | relevance | path

Searched refs:dot (Results 1 – 25 of 186) sorted by relevance

12345678

/minix3/external/bsd/libpcap/dist/
H A DCREDITS4 Bill Fenner <fenner at research dot att dot com>
5 Denis Ovsienko <denis at ovsienko dot info>
6 Fulvio Risso <risso at polito dot it>
7 Guy Harris <guy at alum dot mit dot edu>
8 Hannes Gredler <hannes at juniper dot net>
9 Michael Richardson <mcr at sandelman dot ottawa dot on dot ca>
10 Francois-Xavier Le Bail <fx dot lebail at yahoo dot com>
14 Akos Vandra <axos88 at gmail dot com>
15 Alan Bawden <Alan at LCS dot MIT dot EDU>
16 Albert Chin <china at thewrittenword dot com>
[all …]
/minix3/external/bsd/tcpdump/dist/
H A DCREDITS4 Bill Fenner <fenner at research dot att dot com>
5 Denis Ovsienko <denis at ovsienko dot info>
6 Fulvio Risso <risso at polito dot it>
7 Guy Harris <guy at alum dot mit dot edu>
8 Hannes Gredler <hannes at juniper dot net>
9 Michael Richardson <mcr at sandelman dot ottawa dot on dot ca>
10 Francois-Xavier Le Bail <fx dot lebail at yahoo dot com>
14 Aaron Campbell <aaron at arbor dot net>
15 A Costa <agcosta at gis dot net>
16 Albert Chin <china at thewrittenword dot com>
[all …]
/minix3/etc/skel/
H A DMakefile4 CONFIGFILES= dot.cshrc dot.login dot.logout dot.profile dot.shrc
7 FILESNAME_${F}= ${F:S/dot//}
/minix3/etc/root/
H A DMakefile3 CONFIGFILES= dot.cshrc dot.klogin dot.login dot.profile dot.shrc
9 FILESNAME_${F}= ${F:S/dot//}
H A Ddot.klogin1 # $NetBSD: dot.klogin,v 1.3 1997/10/28 03:33:20 mrg Exp $
/minix3/bin/pax/
H A Dsel_subs.c341 int dot = 0; in trng_add() local
363 dot = 0; in trng_add()
370 if ((*stpt == '.') && (!dot)) { in trng_add()
371 ++dot; in trng_add()
551 const char *dot, *t; in str_sec() local
554 for (t = p, dot = NULL; *t; ++t) { in str_sec()
557 if (*t == '.' && dot == NULL) { in str_sec()
558 dot = t; in str_sec()
566 if (dot != NULL) { in str_sec()
567 len = strlen(dot); in str_sec()
[all …]
/minix3/tests/modules/k_helper3/
H A Dk_helper3.c61 char filename[MAXPATHLEN], *propsstr, *shortname, *dot; in load() local
94 dot = strrchr(shortname, '.'); in load()
95 if (dot) in load()
96 *dot = 0; in load()
/minix3/bin/date/
H A Ddate.c190 const char *dot, *t, *op; in setthetime() local
194 for (t = p, dot = NULL; *t; ++t) { in setthetime()
196 if (dot == NULL) { in setthetime()
197 dot = t; in setthetime()
211 if (dot != NULL) { /* .ss */ in setthetime()
212 len = strlen(dot); in setthetime()
220 ++dot; in setthetime()
221 lt->tm_sec = ATOI2(dot); in setthetime()
/minix3/external/bsd/pkg_install/dist/lib/
H A Dstr.c53 const char *dot; in suffix_of() local
55 return ((dot = strrchr(basename_of(str), '.')) == NULL) ? "" : dot + 1; in suffix_of()
/minix3/games/caesar/
H A Dcaesar.c147 double dot, winnerdot; in guess_and_rotate() local
174 dot = 0.0; in guess_and_rotate()
176 dot += (obs[upper[i]] + obs[lower[i]]) in guess_and_rotate()
179 if (try == 0 || dot > winnerdot) { in guess_and_rotate()
182 winnerdot = dot; in guess_and_rotate()
/minix3/usr.bin/make/
H A Ddir.c233 static Path *dot; /* contents of current directory */ variable
329 if (dot != NULL) { in Dir_InitDot()
333 ln = Lst_Member(openDirectories, dot); in Dir_InitDot()
337 dot = Dir_AddDir(NULL, "."); in Dir_InitDot()
339 if (dot == NULL) { in Dir_InitDot()
348 dot->refCount += 1; in Dir_InitDot()
372 dot->refCount -= 1; in Dir_End()
375 Dir_Destroy(dot); in Dir_End()
408 if (dot) in Dir_SetPATH()
409 Var_Append(".PATH", dot->name, VAR_GLOBAL); in Dir_SetPATH()
[all …]
/minix3/minix/commands/compress/
H A Dcompress.c454 char *dot; local
455 if (NULL == (dot = strchr(tempname,'.')))
463 if (strlen(dot) < 4)
466 dot[3] = 'Z';
508 char *dot; local
511 for (dot = ofname; *dot; dot++)
512 *dot = toupper(*dot);
513 if (NULL == (dot = strchr(ofname,'.')))
518 if (strlen(dot) == 4)
521 if (strcmp(dot,".EXZ") == 0)
[all …]
/minix3/lib/libc/gen/
H A Dsysctlgetmibinfo.c417 const char *piece, *dot; in sysctlgetmibinfo_unlocked() local
457 if ((dot = strpbrk(gname, "./")) == NULL) in sysctlgetmibinfo_unlocked()
460 sep[0] = dot[0]; in sysctlgetmibinfo_unlocked()
481 dot = strchr(piece, sep[0]); in sysctlgetmibinfo_unlocked()
482 if (dot == NULL) { in sysctlgetmibinfo_unlocked()
490 else if (dot - piece > (intptr_t)(sizeof(token) - 1)) { in sysctlgetmibinfo_unlocked()
496 strncpy(token, piece, (size_t)(dot - piece)); in sysctlgetmibinfo_unlocked()
497 token[dot - piece] = '\0'; in sysctlgetmibinfo_unlocked()
567 piece = (dot != NULL) ? dot + 1 : NULL; in sysctlgetmibinfo_unlocked()
/minix3/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dgetnameinfo.c60 char *dot = strchr (host, '.'); in doit() local
61 if (dot != NULL) in doit()
62 *dot = '\0'; in doit()
/minix3/external/bsd/kyua-cli/dist/utils/format/
H A Dformatter.cpp138 const std::string::size_type dot = partial.find('.'); in new_ostringstream() local
139 if (dot != 0) in new_ostringstream()
140 output->width(to_int(format, partial.substr(0, dot), "width")); in new_ostringstream()
141 if (dot != std::string::npos) { in new_ostringstream()
143 output->precision(to_int(format, partial.substr(dot + 1), in new_ostringstream()
/minix3/minix/tests/
H A Dtest28.c74 int dot = 0, dotdot = 0; in test28a() local
90 if (strcmp(dep->d_name, ".") == 0) dot += 1; /* record what it is */ in test28a()
93 if (strcmp(dep->d_name, ".") == 0) dot += 1; /* record again */ in test28a()
96 if (dot == 1 && dotdot != 1) e(10); /* only . and .. */ in test28a()
167 int other = 0, dot = 0, dotdot = 0; /* dirent counters */ in test28b() local
268 dot += 1; in test28b()
273 if (dot != 0) e(46); /* shoul be */ in test28b()
H A Dtest24.c174 int dot = 0, dotdot = 0; in test24b() local
213 dot++; in test24b()
303 other = 0, dot = 0, dotdot = 0; /* possible entrys */ local
319 dot++;
336 if (dot != 1) e(2); /* Check the entrys */
/minix3/external/bsd/libc++/dist/libcxx/
H A DCREDITS.TXT28 E: vanboxem dot ruben at gmail dot com
32 E: theraven at theravensnest dot org
80 E: aep at exys dot org
114 E: r1mikey at gmail dot com
120 E: klaas at klaasgaaf dot nl
/minix3/external/bsd/flex/dist/tests/test-ccl/
H A Dtest.input22 dot-all-1:XXX junk
25 @dot-all-1@
/minix3/tests/fs/tmpfs/
H A Dt_remove.sh68 atf_test_case dot
108 atf_add_test_case dot
/minix3/tests/usr.bin/grep/
H A Dd_word_regexps.out1 dot.separated@words
/minix3/external/bsd/byacc/dist/test/btyacc/
H A Dno_graph.output1 YACC: f - cannot open "nosuchfile.dot"
/minix3/external/bsd/byacc/dist/test/yacc/
H A Dno_graph.output1 YACC: f - cannot open "nosuchfile.dot"
/minix3/distrib/common/
H A Dmtree.dot1 # $NetBSD: mtree.dot,v 1.1 2002/05/03 14:20:54 lukem Exp $
/minix3/external/bsd/llvm/dist/llvm/test/CodeGen/X86/
H A D2009-09-21-NoSpillLoopCount.ll3 define void @dot(i16* nocapture %A, i32 %As, i16* nocapture %B, i32 %Bs, i16* nocapture %C, i32 %N)…
4 ; CHECK-LABEL: dot:

12345678