Searched refs:comma (Results 1 - 25 of 88) sorted by relevance

1234

/freebsd-10-stable/sys/kern/
H A Duipc_debug.c80 int comma; local
82 comma = 0;
84 db_printf("%sSO_DEBUG", comma ? ", " : "");
85 comma = 1;
88 db_printf("%sSO_ACCEPTCONN", comma ? ", " : "");
89 comma = 1;
92 db_printf("%sSO_REUSEADDR", comma ? ", " : "");
93 comma = 1;
96 db_printf("%sSO_KEEPALIVE", comma ? ", " : "");
97 comma
152 int comma; local
192 int comma; local
208 int comma; local
269 int comma; local
345 int comma; local
[all...]
H A Dkern_intr.c1719 int comma; local
1764 comma = 0;
1766 if (comma)
1769 comma = 1;
1772 if (comma)
1775 comma = 1;
1778 if (comma)
1781 comma = 1;
1784 if (comma)
1787 comma
1807 int comma; local
[all...]
/freebsd-10-stable/contrib/ipfilter/lib/
H A Dprintfr.c247 char *comma = " "; local
262 fputs(comma, stdout);
266 comma = ",";
269 fputs(comma, stdout);
273 comma = ",";
276 fputs(comma, stdout);
280 comma = ",";
283 fputs(comma, stdout);
287 comma = ",";
290 fputs(comma, stdou
375 char *comma = ""; local
[all...]
/freebsd-10-stable/usr.bin/indent/
H A Dindent_codes.h52 #define comma 14 macro
/freebsd-10-stable/contrib/ncurses/ncurses/tinfo/
H A DMKfallback.sh87 comma=""
90 echo "$comma /* $x */"
92 comma=","
/freebsd-10-stable/contrib/one-true-awk/
H A Dawkgram.y72 %type <i> pst opt_pst lbrace rbrace rparen comma nl opt_nl and bor
111 comma: label
112 ',' | comma NL
195 | patlist comma pattern { $$ = linkum($1, $3); }
253 pattern comma pattern { $$ = linkum($1, $3); }
254 | plist comma pattern { $$ = linkum($1, $3); }
259 | pplist comma ppattern { $$ = linkum($1, $3); }
376 | INDEX '(' pattern comma pattern ')'
378 | INDEX '(' pattern comma reg_expr ')'
382 | MATCHFCN '(' pattern comma reg_exp
[all...]
/freebsd-10-stable/usr.sbin/pciconf/
H A Dcap.c148 int comma, max_splits, max_burst_read; local
159 comma = 0;
161 printf("%s 133MHz", comma ? "," : "");
162 comma = 1;
165 printf("%s 266MHz", comma ? "," : "");
166 comma = 1;
169 printf("%s 533MHz", comma ? "," : "");
170 comma = 1;
214 printf("%s %d burst read, %d split transaction%s", comma ? "," : "",
314 int comma; local
[all...]
/freebsd-10-stable/contrib/ncurses/ncurses/base/
H A DMKlib_gen.sh257 comma = ""
290 comma = comma "_nc_visbuf2(" num ","
300 comma = comma "_trace" argtype "2(" num ","
303 comma = comma "(long)"
307 args = args comma "a" ++num;
310 args = args comma "\"va_list\""
312 args = args comma "\"
[all...]
/freebsd-10-stable/sys/netinet/
H A Din_pcb.c2307 int comma; local
2309 comma = 0;
2311 db_printf("%sINP_RECVOPTS", comma ? ", " : "");
2312 comma = 1;
2315 db_printf("%sINP_RECVRETOPTS", comma ? ", " : "");
2316 comma = 1;
2319 db_printf("%sINP_RECVDSTADDR", comma ? ", " : "");
2320 comma = 1;
2323 db_printf("%sINP_HDRINCL", comma ? ", " : "");
2324 comma
2427 int comma; local
[all...]
H A Dtcp_usrreq.c1945 int comma; local
1947 comma = 0;
1949 db_printf("%sTF_ACKNOW", comma ? ", " : "");
1950 comma = 1;
1953 db_printf("%sTF_DELACK", comma ? ", " : "");
1954 comma = 1;
1957 db_printf("%sTF_NODELAY", comma ? ", " : "");
1958 comma = 1;
1961 db_printf("%sTF_NOOPT", comma ? ", " : "");
1962 comma
2053 int comma; local
[all...]
/freebsd-10-stable/usr.sbin/mfiutil/
H A Dmfi_show.c60 int error, fd, comma; local
89 comma = 0;
92 comma = 1;
95 printf("%s RAID1", comma ? "," : "");
96 comma = 1;
99 printf("%s RAID5", comma ? "," : "");
100 comma = 1;
103 printf("%s RAID1E", comma ? "," : "");
104 comma = 1;
107 printf("%s RAID6", comma
148 int comma, error, fd, show_capacity, show_props; local
[all...]
/freebsd-10-stable/usr.sbin/mptutil/
H A Dmpt_show.c60 int comma, i; local
62 comma = 0;
67 if (comma)
70 comma = 1;
82 int comma, error, fd; local
117 comma = 0;
121 comma = 1;
125 printf("%s RAID1", comma ? "," : "");
126 comma = 1;
130 printf("%s RAID1E", comma
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/
H A DParseOpenMP.cpp135 if (Tok.is(tok::comma))
216 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
221 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
223 } else if (Tok.isNot(tok::comma) && Tok.isNot(tok::r_paren) &&
226 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
238 if (Tok.is(tok::comma)) {
296 SkipUntil(tok::comma, tok::annot_pragma_openmp_end, StopBeforeMatch);
320 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::comma) &&
359 SkipUntil(tok::comma, tok::r_paren, tok::annot_pragma_openmp_end,
363 IsComma = Tok.is(tok::comma);
[all...]
H A DParseTemplate.cpp276 if (Tok.is(tok::comma)) {
351 // a comma or closing brace.
352 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
356 // Did we find a comma or the end of the template parameter list?
357 if (Tok.is(tok::comma)) {
367 SkipUntil(tok::comma, tok::greater, tok::greatergreater,
383 case tok::comma:
400 case tok::comma:
427 case tok::comma:
502 } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||
[all...]
H A DParseInit.cpp83 case tok::comma:
84 // Since a comma cannot occur in a constant-expression, this must
425 if (Tok.isNot(tok::comma)) break;
452 // grammatically ok (i.e. we have a comma coming up) try to continue
454 // diagnostics for later elements that we find. If we don't see a comma,
459 if (Tok.isNot(tok::comma)) {
465 // If we don't have a comma continued list, we're done.
466 if (Tok.isNot(tok::comma)) break;
468 // TODO: save comma locations if some client cares.
471 // Handle trailing comma
[all...]
/freebsd-10-stable/lib/libipsec/
H A Dpolicy_token.l66 comma \,
/freebsd-10-stable/sys/x86/x86/
H A Didentcpu.c2097 int comma; local
2108 comma = 0;
2110 printf("%sNP", comma ? "," : "");
2111 comma = 1;
2114 printf("%sNRIP", comma ? "," : "");
2115 comma = 1;
2118 printf("%sVClean", comma ? "," : "");
2119 comma = 1;
2122 printf("%sAFlush", comma ? "," : "");
2123 comma
2225 int comma; local
[all...]
/freebsd-10-stable/sys/ddb/
H A Ddb_ps.c335 boolean_t comma; local
368 comma = FALSE;
371 comma = TRUE;
374 if (comma)
377 comma = TRUE;
380 if (comma)
383 comma = TRUE;
386 if (comma)
389 comma = TRUE;
392 if (comma)
[all...]
/freebsd-10-stable/contrib/gcc/
H A Doptc-gen.awk32 comma = ","
171 comma = ""
205 var_set(flags[i]), comma)
H A Dopth-gen.awk31 comma = ","
180 comma = ""
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/
H A DOperatorPrecedence.cpp42 case tok::comma: return prec::Comma;
/freebsd-10-stable/contrib/tcpdump/
H A Dprint-egp.c146 const char *comma; local
187 comma = "";
191 printf("%sd%d:", comma, (int)*cp++);
192 comma = ", ";
/freebsd-10-stable/usr.bin/mail/
H A Dsend.c531 fmt(const char *str, struct name *np, FILE *fo, int comma) argument
535 comma = comma ? 1 : 0;
541 comma = 0;
544 if (col + len + comma > 72 && col > 4) {
550 if (comma)
552 col += len + comma;
H A Dnames.c119 int s, comma; local
123 comma = ntype & GCOMMA;
128 if (debug && comma)
134 if (comma)
146 if (comma && p->n_flink != NULL)
151 if (comma && *--cp == ',')
/freebsd-10-stable/contrib/llvm/lib/TableGen/
H A DTGLexer.h41 comma, period, // , . enumerator in enum:llvm::tgtok::TokKind

Completed in 286 milliseconds

1234