Searched refs:fmt (Results 1 - 25 of 1532) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/format/
H A Dnul-1.c12 static char const fmt[] = "x%s\0%s\n\0abc"; local
13 printf (fmt+4, fmt+8); /* { dg-bogus "embedded.*in format" "bogus embed warning" } */
H A Dnul-2.c14 static char const fmt[] = "x%s\0%s\n\0abc"; local
15 printf (fmt+4, fmt+8);
H A Dms_nul-1.c13 static char const fmt[] = "x%s\0%s\n\0abc"; local
14 printf (fmt+4, fmt+8); /* { dg-bogus "embedded.*in format" "bogus embed warning" } */
H A Dms_nul-2.c15 static char const fmt[] = "x%s\0%s\n\0abc"; local
16 printf (fmt+4, fmt+8);
H A Dmiss-1.c9 foo (const char *fmt, ...) argument
12 va_start (ap, fmt);
13 vprintf (fmt, ap); /* { dg-warning "candidate" "printf attribute warning" } */
18 bar (const char *fmt, ...) argument
21 va_start (ap, fmt);
22 vscanf (fmt, ap); /* { dg-warning "candidate" "scanf attribute warning" } */
27 foo2 (const char *fmt, ...) argument
30 va_start (ap, fmt);
31 vprintf (fmt, ap);
36 vfoo (const char *fmt, va_lis argument
[all...]
H A Dms_miss-1.c10 foo (const char *fmt, ...) argument
13 va_start (ap, fmt);
14 vprintf (fmt, ap); /* { dg-warning "candidate" "printf attribute warning" } */
19 bar (const char *fmt, ...) argument
22 va_start (ap, fmt);
23 vscanf (fmt, ap); /* { dg-warning "candidate" "scanf attribute warning" } */
28 foo2 (const char *fmt, ...) argument
31 va_start (ap, fmt);
32 vprintf (fmt, ap);
37 vfoo (const char *fmt, va_lis argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20000112-1.c4 special_format (fmt)
5 const char *fmt;
7 return (strchr (fmt, '*') != 0
8 || strchr (fmt, 'V') != 0
9 || strchr (fmt, 'S') != 0
10 || strchr (fmt, 'n') != 0);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20000112-1.c4 special_format (fmt)
5 const char *fmt;
7 return (strchr (fmt, '*') != 0
8 || strchr (fmt, 'V') != 0
9 || strchr (fmt, 'S') != 0
10 || strchr (fmt, 'n') != 0);
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/fsinfo/
H A Dnull_lex.l6 void yyerror(const char *fmt, ...) {}
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A Dpr34127.c6 void prepare_s(const char *fmt) argument
8 whichtable((char **)&fmt);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A D20031002-1.c4 void generic_sendmsg (char *fmt, ...) argument
6 __builtin_next_arg(fmt);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A D20031002-1.c4 void generic_sendmsg (char *fmt, ...) argument
6 __builtin_next_arg(fmt);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dwarn.c41 warn(const char *fmt, ...) argument
44 va_start(ap, fmt);
45 vwarn(fmt, ap);
H A Derr.c41 err(int eval, const char *fmt, ...) argument
44 va_start(ap, fmt);
45 verr(eval, fmt, ap);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/include/isc/
H A Dformatcheck.h30 * \li fmt is the location of the format string parameter.
37 #define ISC_FORMAT_PRINTF(fmt, args) __attribute__((__format__(__printf__, fmt, args)))
39 #define ISC_FORMAT_PRINTF(fmt, args)
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/include/isc/
H A Dformatcheck.h30 * \li fmt is the location of the format string parameter.
37 #define ISC_FORMAT_PRINTF(fmt, args) __attribute__((__format__(__printf__, fmt, args)))
39 #define ISC_FORMAT_PRINTF(fmt, args)
/netbsd-6-1-5-RELEASE/sys/arch/hpcmips/stand/libsa/
H A Dpanic.c43 panic(const char *fmt, ...) argument
45 panic(fmt /*, va_alist */)
46 char *fmt;
/netbsd-6-1-5-RELEASE/sys/ufs/chfs/
H A Ddebug.h61 #define debug_msg(pref, fmt, ...) \
64 " %s: " fmt, __FUNCTION__ , ##__VA_ARGS__); \
76 #define chfs_err(fmt, ...) debug_msg(CHFS_ERROR_PREFIX, fmt, ##__VA_ARGS__)
77 #define chfs_warn(fmt, ...) debug_msg(CHFS_WARNING_PREFIX, fmt, ##__VA_ARGS__)
78 #define chfs_noti(fmt, ...) debug_msg(CHFS_NOTICE_PREFIX, fmt, ##__VA_ARGS__)
79 #define dbg(fmt, ...) debug_msg(CHFS_DBG_PREFIX, fmt, ##__VA_ARGS_
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/warn/
H A Dmiss-format-1.C13 foo (const char *fmt, ...) argument
16 va_start (ap, fmt);
17 vprintf (fmt, ap); /* { dg-warning "candidate" "printf attribute warning" } */
22 bar (const char *fmt, ...) argument
25 va_start (ap, fmt);
26 vscanf (fmt, ap); /* { dg-warning "candidate" "scanf attribute warning" { xfail *-*-solaris2.[7-8] *-*-vxworks* alpha*-dec-osf* } } */
31 foo2 (const char *fmt, ...) argument
34 va_start (ap, fmt);
35 vprintf (fmt, ap);
40 vfoo (const char *fmt, va_lis argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/warn/
H A Dmiss-format-1.C11 foo (const char *fmt, ...) argument
14 va_start (ap, fmt);
15 vprintf (fmt, ap); /* { dg-warning "candidate" "printf attribute warning" } */
20 bar (const char *fmt, ...) argument
23 va_start (ap, fmt);
24 vscanf (fmt, ap); /* { dg-warning "candidate" "scanf attribute warning" { xfail *-*-solaris2.5.1 *-*-solaris2.[5-8] } } */
29 foo2 (const char *fmt, ...) argument
32 va_start (ap, fmt);
33 vprintf (fmt, ap);
38 vfoo (const char *fmt, va_lis argument
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/format/
H A Dmiss-1.c9 foo (const char *fmt, ...) argument
12 va_start (ap, fmt);
13 vprintf (fmt, ap); /* { dg-warning "candidate" "printf attribute warning" } */
18 bar (const char *fmt, ...) argument
21 va_start (ap, fmt);
22 vscanf (fmt, ap); /* { dg-warning "candidate" "scanf attribute warning" } */
27 foo2 (const char *fmt, ...) argument
30 va_start (ap, fmt);
31 vprintf (fmt, ap);
36 vfoo (const char *fmt, va_lis argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/sbmips/stand/common/
H A Dpanic_putstr.c37 panic(const char *fmt, ...) argument
40 putstr(fmt); /* not a great attempt, but something */
/netbsd-6-1-5-RELEASE/sys/arch/alpha/stand/common/
H A Dpanic_putstr.c37 panic(const char *fmt, ...) argument
40 putstr(fmt); /* not a great attempt, but something */
/netbsd-6-1-5-RELEASE/dist/ipf/lib/
H A Ddebug.c23 void debug(char *fmt, ...) argument
25 void debug(fmt, va_alist)
26 char *fmt;
32 va_start(pvar, fmt);
35 vprintf(fmt, pvar);
H A Dverbose.c23 void verbose(char *fmt, ...) argument
25 void verbose(fmt, va_alist)
26 char *fmt;
32 va_start(pvar, fmt);
35 vprintf(fmt, pvar);

Completed in 242 milliseconds

1234567891011>>