Searched refs:fmt (Results 76 - 100 of 2576) sorted by relevance

1234567891011>>

/netbsd-current/crypto/external/bsd/openssl.old/dist/test/testutil/
H A Doutput.h23 int test_vprintf_stdout(const char *fmt, va_list ap) PRINTF_FORMAT(1, 0);
24 int test_vprintf_stderr(const char *fmt, va_list ap) PRINTF_FORMAT(1, 0);
30 int test_printf_stdout(const char *fmt, ...) PRINTF_FORMAT(1, 2);
31 int test_printf_stderr(const char *fmt, ...) PRINTF_FORMAT(1, 2);
/netbsd-current/external/gpl3/gcc/dist/libobjc/objc-private/
H A Derror.h36 _objc_abort (const char *fmt, ...) __attribute__ ((noreturn));
/netbsd-current/external/gpl3/gdb/dist/gdbserver/
H A Ddebug.h27 #define remote_debug_printf(fmt, ...) \
29 "remote", fmt, ##__VA_ARGS__)
46 #define threads_debug_printf(fmt, ...) \
48 "threads", fmt, ##__VA_ARGS__)
/netbsd-current/external/gpl3/gcc.old/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/external/lgpl3/gmp/dist/printf/
H A Dsnprintf.c38 gmp_snprintf (char *buf, size_t size, const char *fmt, ...) argument
44 va_start (ap, fmt);
48 ASSERT (! MEM_OVERLAP_P (buf, size, fmt, strlen(fmt)+1));
50 ret = __gmp_doprnt (&__gmp_snprintf_funs, &d, fmt, ap);
H A Dsprintf.c38 gmp_sprintf (char *buf, const char *fmt, ...) argument
41 int fmtlen = strlen(fmt);
46 va_start (ap, fmt);
48 ret = __gmp_doprnt (&__gmp_sprintf_funs, &buf, fmt, ap);
51 ASSERT (! MEM_OVERLAP_P (buf, strlen(buf)+1, fmt, fmtlen+1));
H A Dobprintf.c43 gmp_obstack_printf (struct obstack *ob, const char *fmt, ...) argument
48 va_start (ap, fmt);
51 fmt, strlen(fmt)+1));
53 ret = __gmp_doprnt (&__gmp_obstack_printf_funs, ob, fmt, ap);
H A Dvfprintf.c38 gmp_vfprintf (FILE *fp, const char *fmt, va_list ap) argument
40 return __gmp_doprnt (&__gmp_fprintf_funs, fp, fmt, ap);
/netbsd-current/libexec/ld.elf_so/
H A Dxprintf.c55 xvsnprintf(char *buf, size_t buflen, const char *fmt, va_list ap) argument
61 while (*fmt != '\0' && bp < ep) {
62 switch (*fmt) {
64 if (fmt[1] != '\0')
65 *bp++ = *++fmt;
71 rflag: switch (fmt[1]) {
77 fmt++;
82 fmt++;
86 fmt++;
104 if (fmt[
217 xvprintf(const char *fmt, va_list ap) argument
225 xprintf(const char *fmt, ...) argument
237 xsnprintf(char *buf, size_t buflen, const char *fmt, ...) argument
263 xerrx(int eval, const char *fmt, ...) argument
276 xerr(int eval, const char *fmt, ...) argument
290 xwarn(const char *fmt, ...) argument
304 xwarnx(const char *fmt, ...) argument
[all...]
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dprintf.c44 #define GET_STR_VA(sz, str, fmt, ap) \
47 sz = mpfr_vasprintf (&(str), fmt, ap); \
56 #define GET_STR(sz, str, fmt) \
60 va_start(ap, fmt); \
61 sz = mpfr_vasprintf (&(str), fmt, ap); \
72 mpfr_printf (const char *fmt, ...) argument
77 GET_STR (ret, str, fmt);
85 mpfr_vprintf (const char *fmt, va_list ap) argument
90 GET_STR_VA (ret, str, fmt, ap);
99 mpfr_fprintf (FILE *fp, const char *fmt, argument
112 mpfr_vfprintf(FILE *fp, const char *fmt, va_list ap) argument
127 mpfr_sprintf(char *buf, const char *fmt, ...) argument
140 mpfr_vsprintf(char *buf, const char *fmt, va_list ap) argument
153 mpfr_snprintf(char *buf, size_t size, const char *fmt, ...) argument
166 mpfr_vsnprintf(char *buf, size_t size, const char *fmt, va_list ap) argument
172 mpfr_asprintf(char **pp, const char *fmt, ...) argument
182 mpfr_vasprintf(char **ptr, const char *fmt, va_list ap) argument
[all...]
/netbsd-current/lib/libcurses/
H A Dscanw.c54 scanw(const char *fmt,...) argument
59 va_start(ap, fmt);
60 ret = vw_scanw(stdscr, fmt, ap);
69 wscanw(WINDOW *win, const char *fmt,...) argument
74 va_start(ap, fmt);
75 ret = vw_scanw(win, fmt, ap);
85 mvscanw(int y, int x, const char *fmt,...) argument
92 va_start(ap, fmt);
93 ret = vw_scanw(stdscr, fmt, ap);
99 mvwscanw(WINDOW * win, int y, int x, const char *fmt, argument
116 vw_scanw(WINDOW *win, const char *fmt, va_list ap) argument
[all...]
/netbsd-current/external/bsd/nvi/dist/clib/
H A Dsnprintf.c20 snprintf(char *str, size_t n, const char *fmt, ...) argument
22 snprintf(str, n, fmt, va_alist)
25 const char *fmt;
32 va_start(ap, fmt);
37 (void)vsprintf(str, fmt, ap);
41 rval = vsprintf(str, fmt, ap);
/netbsd-current/lib/libc/stdio/
H A Ddprintf.c52 dprintf(int fd, const char * __restrict fmt, ...)
57 va_start(ap, fmt);
58 ret = vdprintf(fd, fmt, ap);
64 dprintf_l(int fd, locale_t loc, const char * __restrict fmt, ...) argument
69 va_start(ap, fmt);
70 ret = vdprintf_l(fd, loc, fmt, ap);
H A Dprintf.c53 printf(char const *fmt, ...)
58 va_start(ap, fmt);
59 ret = vfprintf(stdout, fmt, ap);
65 printf_l(locale_t loc, char const *fmt, ...) argument
70 va_start(ap, fmt);
71 ret = vfprintf_l(stdout, loc, fmt, ap);
H A Dwprintf.c46 wprintf(const wchar_t * __restrict fmt, ...)
51 va_start(ap, fmt);
52 ret = vfwprintf(stdout, fmt, ap);
59 wprintf_l(locale_t loc, const wchar_t * __restrict fmt, ...) argument
64 va_start(ap, fmt);
65 ret = vfwprintf_l(stdout, loc, fmt, ap);
H A Dwscanf.c47 wscanf(const wchar_t * __restrict fmt, ...)
52 va_start(ap, fmt);
53 r = vfwscanf(stdin, fmt, ap);
60 wscanf_l(locale_t loc, const wchar_t * __restrict fmt, ...) argument
65 va_start(ap, fmt);
66 r = vfwscanf_l(stdin, loc, fmt, ap);
H A Dscanf.c57 scanf(char const *fmt, ...)
62 va_start(ap, fmt);
63 ret = __svfscanf(stdin, fmt, ap);
69 scanf_l(locale_t loc, char const *fmt, ...) argument
74 va_start(ap, fmt);
75 ret = __svfscanf_l(stdin, loc, fmt, ap);
/netbsd-current/sys/arch/x68k/stand/common/
H A Dxprintf.c97 xvsnprintf(char *buf, size_t len, const char *fmt, va_list ap) argument
103 while (*fmt && len > 1) {
104 if (*fmt != '%') {
106 if (IS_SJIS1(*fmt) && IS_SJIS2(fmt[1])) {
109 *b++ = *fmt++;
113 if (*fmt == '\n' && (b == buf || b[-1] != '\r')) {
119 *b++ = *fmt++;
125 fmt++;
126 switch (*fmt
201 xsnprintf(char *buf, size_t len, const char *fmt, ...) argument
222 xvfdprintf(int fd, const char *fmt, va_list ap) argument
236 xprintf(const char *fmt, ...) argument
256 xerrprintf(const char *fmt, ...) argument
276 xerr(int eval, const char *fmt, ...) argument
300 xerrx(int eval, const char *fmt, ...) argument
322 xwarn(const char *fmt, ...) argument
344 xwarnx(const char *fmt, ...) argument
[all...]
/netbsd-current/external/bsd/pdisk/dist/
H A Derrors.h58 void error(int value, const char *fmt, ...) __printflike(2, 3);
59 void fatal(int value, const char *fmt, ...) __dead __printflike(2, 3);
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dverrx.c42 verrx(int eval, const char *fmt, va_list ap) argument
44 rk_warnerr(0, fmt, ap);
H A Dverr.c42 verr(int eval, const char *fmt, va_list ap) argument
44 rk_warnerr(1, fmt, ap);
H A Dvwarnx.c42 vwarnx(const char *fmt, va_list ap) argument
44 rk_warnerr(0, fmt, ap);
H A Dvwarn.c42 vwarn(const char *fmt, va_list ap) argument
44 rk_warnerr(1, fmt, ap);
/netbsd-current/external/lgpl3/gmp/dist/scanf/
H A Dvfscanf.c38 gmp_vfscanf (FILE *fp, const char *fmt, va_list ap) argument
40 return __gmp_doscan (&__gmp_fscanf_funs, fp, fmt, ap);
/netbsd-current/sys/dev/audio/
H A Daudiovar.h100 audio_format2_t fmt; /* format */ member in struct:__anon1
263 #define DIAGNOSTIC_format2(fmt) audio_diagnostic_format2(__func__, (fmt))
269 #define DIAGNOSTIC_format2(fmt)
273 * Return true if 'fmt' is the internal format.
277 audio_format2_is_internal(const audio_format2_t *fmt) argument
280 if (fmt->encoding != AUDIO_ENCODING_SLINEAR_NE)
282 if (fmt->precision != AUDIO_INTERNAL_BITS)
284 if (fmt->stride != AUDIO_INTERNAL_BITS)
290 * Return true if fmt'
293 audio_format2_is_linear(const audio_format2_t *fmt) argument
305 audio_format2_is_signed(const audio_format2_t *fmt) argument
315 audio_format2_endian(const audio_format2_t *fmt) argument
[all...]

Completed in 411 milliseconds

1234567891011>>