Searched refs:dot (Results 26 - 50 of 124) sorted by relevance

12345

/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvarname-dot-alltargets.mk1 # $NetBSD: varname-dot-alltargets.mk,v 1.3 2020/08/25 22:51:54 rillig Exp $
H A Dvarname-dot-newline.mk1 # $NetBSD: varname-dot-newline.mk,v 1.4 2020/10/24 08:46:08 rillig Exp $
H A Ddepsrc.mk3 # Tests for special sources (those starting with a dot, followed by
H A Dvarname-dot-shell.mk1 # $NetBSD: varname-dot-shell.mk,v 1.7 2021/02/04 21:42:47 rillig Exp $
H A Dvarparse-undef-partial.mk27 VAR.= var-dot without parameter
28 ${:UVAR.\:Q}= var-dot with parameter :Q
33 .if ${EVAL} != "defined var-dot\\ without\\ parameter end"
42 .if ${EVAL} != "defined var-dot with parameter :Q end"
H A Dvarname-dot-parsefile.mk1 # $NetBSD: varname-dot-parsefile.mk,v 1.5 2020/10/24 08:50:17 rillig Exp $
6 .if ${.PARSEFILE} != "varname-dot-parsefile.mk"
/freebsd-13-stable/contrib/kyua/utils/format/
H A Dformatter.cpp138 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),
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DLinkerScript.cpp130 if (val < dot && inSec)
136 expandOutputSection(val - dot);
138 dot = val;
222 if (cmd->sym) // sym is nullptr for dot.
775 uint64_t start = isTbss ? dot + ctx->threadBssOffset : dot;
780 ctx->threadBssOffset = end - dot;
782 dot = end;
856 dot = 0;
863 dot
[all...]
/freebsd-13-stable/usr.sbin/tcpdrop/
H A Dtcpdrop.c141 char *dot, *colon; local
144 dot = strrchr(arg, '.');
146 if (dot == NULL)
149 return (dot);
150 if (dot < colon)
153 return (dot);
/freebsd-13-stable/tools/tools/switch_tls/
H A Dswitch_tls.c139 char *dot, *colon; local
142 dot = strrchr(arg, '.');
144 if (dot == NULL)
147 return (dot);
148 if (dot < colon)
151 return (dot);
/freebsd-13-stable/usr.bin/jot/
H A Djot.c417 int dot, hash, space, sign, numbers = 0; local
448 dot = hash = space = sign = numbers = 0;
453 } else if ((*p == '#' && !(numbers|dot|sign|space|
455 (*p == ' ' && !(numbers|dot|space++)) ||
456 ((*p == '+' || *p == '-') && !(numbers|dot|sign++))
457 || (*p == '.' && !(dot++)))
/freebsd-13-stable/sbin/setkey/
H A Dtoken.l78 dot \.
91 hostname {name}(({dot}{name})+{dot}?)?
/freebsd-13-stable/bin/sh/
H A DMakefile8 ROOT= dot.shrc dot.profile
/freebsd-13-stable/contrib/netbsd-tests/fs/tmpfs/
H A Dt_remove.sh83 atf_test_case dot
123 atf_add_test_case dot
/freebsd-13-stable/tests/sys/fs/fusefs/
H A Dreaddir.cc65 const char dot[] = "."; variable
88 ents[1].d_namlen = sizeof(dot);
90 strncpy(ents[1].d_name, dot, ents[1].d_namlen);
111 EXPECT_EQ(sizeof(dot), de->d_namlen);
112 EXPECT_EQ(0, strcmp(dot, de->d_name));
215 ents0[1].d_namlen = sizeof(dot);
219 ents1[0].d_namlen = sizeof(dot);
221 strncpy(ents1[0].d_name, dot, ents1[0].d_namlen);
/freebsd-13-stable/contrib/bmake/
H A Ddir.c82 * Dir_InitDot Set the dot CachedDir.
270 static CachedDir *dot = NULL; variable
507 * (Re)initialize "dot" (current/object directory) path hash.
521 CachedDir_Assign(&dot, dir);
532 CachedDir_Assign(&dot, NULL);
563 if (dot != NULL)
564 Global_Append(".PATH", dot->name);
573 if (dir == dot && seenDotLast)
579 if (dot != NULL)
580 Global_Append(".PATH", dot
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
H A Dx509info.c183 svn_boolean_t dot = FALSE;
191 if (!dot)
194 dot = TRUE;
208 temp = apr_psprintf(scratch_pool, "%s%d", dot ? "" : ".", collector);
181 svn_boolean_t dot = FALSE; local
/freebsd-13-stable/contrib/byacc/
H A Ddefs.h100 #define GRAPH_SUFFIX ".dot"
/freebsd-13-stable/libexec/rtld-elf/
H A Drtld_printf.c133 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
157 sign = 0; dot = 0; dwidth = 0; upper = 0;
161 dot = 1;
176 if (!dot) {
187 if (!dot) {
200 if (dot)
304 if (!dot)
/freebsd-13-stable/sys/cddl/dev/dtrace/
H A Ddtrace_debug.c237 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
261 sign = 0; dot = 0; dwidth = 0; upper = 0;
265 dot = 1;
280 if (!dot) {
291 if (!dot) {
303 if (dot)
407 if (!dot)
/freebsd-13-stable/stand/libsa/
H A Dprintf.c268 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
296 sign = 0; dot = 0; dwidth = 0; upper = 0;
300 dot = 1;
315 if (!dot) {
326 if (!dot) {
338 if (dot)
442 if (!dot)
/freebsd-13-stable/contrib/byacc/test/
H A Dbtyacc_calc1.y227 int dot = 0, expr = 0;
237 if (dot++ || expr)
H A Dcalc1.y212 int dot = 0, expr = 0;
222 if (dot++ || expr)
H A Dvarsyntax_calc1.y214 int dot = 0, expr = 0;
224 if (dot++ || expr)
/freebsd-13-stable/usr.bin/locate/locate/
H A Dutil.c82 * "bla:" -> {"foo", dot}
88 colon(char **dbv, char *path, char *dot) argument
112 /* single colon -> dot */
114 p = dot;

Completed in 244 milliseconds

12345