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

123

/seL4-camkes-master/projects/musllibc/src/stdio/
H A Dvprintf.c3 int vprintf(const char *restrict fmt, va_list ap) argument
5 return vfprintf(stdout, fmt, ap);
H A Dprintf.c4 int printf(const char *restrict fmt, ...) argument
8 va_start(ap, fmt);
9 ret = vfprintf(stdout, fmt, ap);
H A Dvsprintf.c4 int vsprintf(char *restrict s, const char *restrict fmt, va_list ap) argument
6 return vsnprintf(s, INT_MAX, fmt, ap);
H A Dvwprintf.c4 int vwprintf(const wchar_t *restrict fmt, va_list ap) argument
6 return vfwprintf(stdout, fmt, ap);
H A Dvscanf.c5 int vscanf(const char *restrict fmt, va_list ap) argument
7 return vfscanf(stdin, fmt, ap);
H A Dvwscanf.c6 int vwscanf(const wchar_t *restrict fmt, va_list ap) argument
8 return vfwscanf(stdin, fmt, ap);
H A Dasprintf.c5 int asprintf(char **s, const char *fmt, ...) argument
9 va_start(ap, fmt);
10 ret = vasprintf(s, fmt, ap);
H A Ddprintf.c4 int dprintf(int fd, const char *restrict fmt, ...) argument
8 va_start(ap, fmt);
9 ret = vdprintf(fd, fmt, ap);
H A Dfprintf.c4 int fprintf(FILE *restrict f, const char *restrict fmt, ...) argument
8 va_start(ap, fmt);
9 ret = vfprintf(f, fmt, ap);
H A Dfscanf.c5 int fscanf(FILE *restrict f, const char *restrict fmt, ...) argument
9 va_start(ap, fmt);
10 ret = vfscanf(f, fmt, ap);
H A Dfwprintf.c5 int fwprintf(FILE *restrict f, const wchar_t *restrict fmt, ...) argument
9 va_start(ap, fmt);
10 ret = vfwprintf(f, fmt, ap);
H A Dfwscanf.c6 int fwscanf(FILE *restrict f, const wchar_t *restrict fmt, ...) argument
10 va_start(ap, fmt);
11 ret = vfwscanf(f, fmt, ap);
H A Dscanf.c5 int scanf(const char *restrict fmt, ...) argument
9 va_start(ap, fmt);
10 ret = vscanf(fmt, ap);
H A Dsnprintf.c4 int snprintf(char *restrict s, size_t n, const char *restrict fmt, ...) argument
8 va_start(ap, fmt);
9 ret = vsnprintf(s, n, fmt, ap);
H A Dsprintf.c4 int sprintf(char *restrict s, const char *restrict fmt, ...) argument
8 va_start(ap, fmt);
9 ret = vsprintf(s, fmt, ap);
H A Dsscanf.c5 int sscanf(const char *restrict s, const char *restrict fmt, ...) argument
9 va_start(ap, fmt);
10 ret = vsscanf(s, fmt, ap);
H A Dswprintf.c4 int swprintf(wchar_t *restrict s, size_t n, const wchar_t *restrict fmt, ...) argument
8 va_start(ap, fmt);
9 ret = vswprintf(s, n, fmt, ap);
H A Dswscanf.c5 int swscanf(const wchar_t *restrict s, const wchar_t *restrict fmt, ...) argument
9 va_start(ap, fmt);
10 ret = vswscanf(s, fmt, ap);
H A Dvdprintf.c8 int vdprintf(int fd, const char *restrict fmt, va_list ap) argument
12 .buf = (void *)fmt, .buf_size = 0,
15 return vfprintf(&f, fmt, ap);
H A Dwprintf.c5 int wprintf(const wchar_t *restrict fmt, ...) argument
9 va_start(ap, fmt);
10 ret = vwprintf(fmt, ap);
/seL4-camkes-master/projects/util_libs/libutils/include/utils/
H A Dzf_log_if.h22 * ZF_LOG?_IF(condition, fmt, ...):
28 #define ZF_LOGD_IF(cond, fmt, ...) \
29 if (cond) { ZF_LOGD("[Cond failed: %s]\n\t" fmt, #cond, ## __VA_ARGS__); }
30 #define ZF_LOGI_IF(cond, fmt, ...) \
31 if (cond) { ZF_LOGI("[Cond failed: %s]\n\t" fmt, #cond, ## __VA_ARGS__); }
32 #define ZF_LOGW_IF(cond, fmt, ...) \
33 if (cond) { ZF_LOGW("[Cond failed: %s]\n\t" fmt, #cond, ## __VA_ARGS__); }
34 #define ZF_LOGE_IF(cond, fmt, ...) \
35 if (cond) { ZF_LOGE("[Cond failed: %s]\n\t" fmt, #cond, ## __VA_ARGS__); }
36 #define ZF_LOGF_IF(cond, fmt,
[all...]
/seL4-camkes-master/projects/musllibc/src/locale/
H A Dstrfmon.c8 static ssize_t vstrfmon_l(char *s, size_t n, locale_t loc, const char *fmt, va_list ap) argument
15 for (; n && *fmt; ) {
16 if (*fmt != '%') {
18 *s++ = *fmt++;
22 fmt++;
23 if (*fmt == '%') goto literal;
30 for (; ; fmt++) {
31 switch (*fmt) {
33 fill = *++fmt;
52 for (fw=0; isdigit(*fmt); fm
78 strfmon_l(char *restrict s, size_t n, locale_t loc, const char *restrict fmt, ...) argument
91 strfmon(char *restrict s, size_t n, const char *restrict fmt, ...) argument
[all...]
/seL4-camkes-master/projects/musllibc/src/legacy/
H A Derr.c8 void vwarn(const char *fmt, va_list ap) argument
11 if (fmt) {
12 vfprintf(stderr, fmt, ap);
18 void vwarnx(const char *fmt, va_list ap) argument
21 if (fmt) vfprintf(stderr, fmt, ap);
25 _Noreturn void verr(int status, const char *fmt, va_list ap) argument
27 vwarn(fmt, ap);
31 _Noreturn void verrx(int status, const char *fmt, va_list ap) argument
33 vwarnx(fmt, a
37 warn(const char *fmt, ...) argument
45 warnx(const char *fmt, ...) argument
53 err(int status, const char *fmt, ...) argument
61 errx(int status, const char *fmt, ...) argument
[all...]
/seL4-camkes-master/projects/seL4_libs/libsel4utils/include/sel4utils/
H A Dsel4_zf_logif.h23 * ZF_LOG?_IF(condition, fmt, ...):
29 #define ZF_LOGD_IFERR(err, fmt, ...) \
31 { ZF_LOGD("[Err %s]:\n\t" fmt, sel4_strerror(err), ## __VA_ARGS__); }
33 #define ZF_LOGI_IFERR(err, fmt, ...) \
35 { ZF_LOGI("[Err %s]:\n\t" fmt, sel4_strerror(err), ## __VA_ARGS__); }
37 #define ZF_LOGW_IFERR(err, fmt, ...) \
39 { ZF_LOGW("[Err %s]:\n\t" fmt, sel4_strerror(err), ## __VA_ARGS__); }
41 #define ZF_LOGE_IFERR(err, fmt, ...) \
43 { ZF_LOGE("[Err %s]:\n\t" fmt, sel4_strerror(err), ## __VA_ARGS__); }
45 #define ZF_LOGF_IFERR(err, fmt,
[all...]
/seL4-camkes-master/tools/rumprun/lib/libbmk_rumpuser/
H A Drumpuser_cons.c41 rumpuser_dprintf(const char *fmt, ...) argument
45 va_start(ap, fmt);
46 bmk_vprintf(fmt, ap);

Completed in 78 milliseconds

123