Searched refs:fmt (Results 151 - 175 of 2576) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
H A Darray-slices.f9023 write(*, fmt="(A)", advance="no") "GDB = "
24 write(*, fmt="(I0)", advance="no") array
25 write(*, fmt="(A)", advance="yes") ""
36 write (*, fmt="(A)", advance="no") "GDB = '"
37 write (*, fmt="(A)", advance="no") array
38 write (*, fmt="(A)", advance="yes") "'"
50 write(*, fmt="(i4)", advance="no") array (i)
57 write(*, fmt="(A)", advance="no") "GDB = ("
60 write(*, fmt="(A)", advance="no") ", "
62 write(*, fmt
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.go/
H A Dtypes.go3 import "fmt"
17 fmt.Println ("Shall we?")
19 fmt.Println (t)
22 fmt.Println (s1)
23 fmt.Println (s2)
/netbsd-current/external/bsd/nsd/dist/compat/
H A Dsetproctitle.c53 void setproctitle(const char *fmt, ...) argument
59 /* prepend executable name if fmt does not start with '-' */
60 if (fmt == NULL || fmt[0] != '-' || fmt[(off = 1)] == '\0') {
62 const char *sep = (fmt && fmt[off] != '\0') ? ": " : "";
72 if (fmt != NULL && fmt[off] != '\0') {
73 va_start(ap, fmt);
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgomp/
H A Derror.c59 gomp_verror (const char *fmt, va_list list) argument
62 vfprintf (stderr, fmt, list);
67 gomp_error (const char *fmt, ...) argument
71 va_start (list, fmt);
72 gomp_verror (fmt, list);
77 gomp_vfatal (const char *fmt, va_list list) argument
79 gomp_verror (fmt, list);
84 gomp_fatal (const char *fmt, ...) argument
88 va_start (list, fmt);
89 gomp_vfatal (fmt, lis
[all...]
/netbsd-current/lib/libc/stdio/
H A Dfscanf.c57 fscanf(FILE *fp, char const *fmt, ...)
62 va_start(ap, fmt);
63 ret = __svfscanf(fp, fmt, ap);
69 fscanf_l(FILE *fp, locale_t loc, char const *fmt, ...) argument
74 va_start(ap, fmt);
75 ret = __svfscanf_l(fp, loc, fmt, ap);
H A Dfwprintf.c46 fwprintf(FILE * __restrict fp, const wchar_t * __restrict fmt, ...)
51 va_start(ap, fmt);
52 ret = vfwprintf(fp, fmt, ap);
59 fwprintf_l(FILE * __restrict fp, locale_t loc, const wchar_t * __restrict fmt, ...) argument
64 va_start(ap, fmt);
65 ret = vfwprintf_l(fp, loc, fmt, ap);
H A Dfwscanf.c47 fwscanf(FILE * __restrict fp, const wchar_t * __restrict fmt, ...)
52 va_start(ap, fmt);
53 r = vfwscanf(fp, fmt, ap);
60 fwscanf_l(FILE * __restrict fp, locale_t loc, const wchar_t * __restrict fmt, argument
66 va_start(ap, fmt);
67 r = vfwscanf_l(fp, loc, fmt, ap);
H A Dswprintf.c46 swprintf(wchar_t * __restrict s, size_t n, const wchar_t * __restrict fmt, ...)
51 va_start(ap, fmt);
52 ret = vswprintf(s, n, fmt, ap);
60 const wchar_t * __restrict fmt, ...)
65 va_start(ap, fmt);
66 ret = vswprintf_l(s, n, loc, fmt, ap);
59 swprintf_l(wchar_t * __restrict s, size_t n, locale_t loc, const wchar_t * __restrict fmt, ...) argument
H A Dswscanf.c47 swscanf(const wchar_t * __restrict str, const wchar_t * __restrict fmt, ...)
52 va_start(ap, fmt);
53 r = vswscanf(str, fmt, ap);
61 const wchar_t * __restrict fmt, ...)
66 va_start(ap, fmt);
67 r = vswscanf_l(str, loc, fmt, ap);
60 swscanf_l(const wchar_t * __restrict str, locale_t loc, const wchar_t * __restrict fmt, ...) argument
H A Dfprintf.c51 fprintf(FILE *fp, const char *fmt, ...) argument
56 va_start(ap, fmt);
57 ret = vfprintf(fp, fmt, ap);
65 fprintf_l(FILE *fp, locale_t loc, const char *fmt, ...)
70 va_start(ap, fmt);
71 ret = vfprintf_l(fp, loc, fmt, ap);
H A Dsscanf.c58 sscanf(const char *str, char const *fmt, ...)
63 va_start(ap, fmt);
64 ret = vsscanf(str, fmt, ap);
70 sscanf_l(const char *str, locale_t loc, char const *fmt, ...) argument
75 va_start(ap, fmt);
76 ret = vsscanf_l(str, loc, fmt, ap);
H A Dsnprintf_ss.c60 snprintf_ss(char *str, size_t n, char const *fmt, ...)
65 va_start(ap, fmt);
66 ret = vsnprintf_ss(str, n, fmt, ap);
/netbsd-current/usr.bin/tail/
H A Dmisc.c66 xerr(int fatal, const char *fmt, ...) argument
70 va_start(ap, fmt);
71 vwarn(fmt, ap);
79 xerrx(int fatal, const char *fmt, ...) argument
83 va_start(ap, fmt);
84 vwarnx(fmt, ap);
/netbsd-current/external/lgpl3/gmp/dist/demos/perl/GMP/
H A DMpf.pm84 my $fmt;
87 $fmt = $#;
90 if ($fmt !~ /^((%%|[^%])*%[-+ .\d]*)([eEfgG](%%|[^%])*)$/) {
93 $fmt = $1 . 'F' . $3;
95 $fmt = '%.Fg';
97 GMP::sprintf_internal ($fmt, $_[0]);
/netbsd-current/external/cddl/osnet/sys/kern/
H A Dprintf.c39 vcmn_err(int ce, const char *fmt, va_list adx) argument
45 vpanic(fmt, adx);
51 fmt, adx);
58 cmn_err(int ce, const char *fmt, ...) argument
62 va_start(adx, fmt);
63 vcmn_err(ce, fmt, adx);
/netbsd-current/crypto/external/bsd/libsaslc/dist/src/
H A Dmsg.c61 * @param fmt message format string
65 saslc__msg_syslog(bool flag, int priority, const char *fmt, ...) argument
73 va_start(ap, fmt);
74 if (asprintf(&tmp, "libsaslc: %s", fmt) != -1) {
/netbsd-current/lib/libc/gen/
H A Derrc.c51 errc(int eval, int code, const char *fmt, ...)
55 va_start(ap, fmt);
56 verrc(eval, code, fmt, ap);
H A Dverrx.c57 verrx(int eval, const char *fmt, va_list ap)
60 if (fmt != NULL)
61 (void)vfprintf(stderr, fmt, ap);
H A Dvwarnx.c57 vwarnx(const char *fmt, va_list ap)
60 if (fmt != NULL)
61 (void)vfprintf(stderr, fmt, ap);
/netbsd-current/share/examples/puffs/pgfs/
H A Dpgfs_debug.c48 _dprintf(const char *func, const char *fmt, ...) argument
56 va_start(ap, fmt);
57 vsnprintf(buf, sizeof(buf), fmt, ap);
/netbsd-current/sys/arch/i386/stand/efiboot/
H A Dpanic.c35 IN CHAR16 *fmt,
41 va_start(args, fmt);
42 VPrint(fmt, args);
34 Panic( IN CHAR16 *fmt, ... ) argument
/netbsd-current/external/lgpl3/gmp/dist/scanf/
H A Dvsscanf.c39 gmp_vsscanf (const char *s, const char *fmt, va_list ap) argument
42 /* We only actually need this if there's standard C types in fmt, and if
53 ret = __gmp_doscan (&__gmp_sscanf_funs, (void *) &s, fmt, ap);
58 return __gmp_doscan (&__gmp_sscanf_funs, (void *) &s, fmt, ap);
/netbsd-current/external/lgpl3/mpfr/dist/tests/
H A Dtvalist.c65 test (FILE *fout, const char *fmt, ...) argument
69 va_start (ap, fmt);
70 mpfr_vfprintf (fout, fmt, ap);
/netbsd-current/external/bsd/openpam/dist/lib/libpam/
H A Dpam_error.c62 const char *fmt,
69 va_start(ap, fmt);
70 r = pam_vprompt(pamh, PAM_ERROR_MSG, &rsp, fmt, ap);
61 pam_error(const pam_handle_t *pamh, const char *fmt, ...) argument
H A Dpam_prompt.c62 const char *fmt,
68 va_start(ap, fmt);
69 r = pam_vprompt(pamh, style, resp, fmt, ap);
59 pam_prompt(const pam_handle_t *pamh, int style, char **resp, const char *fmt, ...) argument

Completed in 398 milliseconds

1234567891011>>