Home
last modified time | relevance | path

Searched refs:PRINTF_BUF_SIZE (Results 1 – 2 of 2) sorted by relevance

/picolibc-latest/test/
Dprintf-tests.c30 #define PRINTF_BUF_SIZE 512 macro
32 static char buf[PRINTF_BUF_SIZE];
33 static wchar_t wbuf[PRINTF_BUF_SIZE];
95 n = snprintf(buf, PRINTF_BUF_SIZE, fmt, iv1, iv2, ldv); in test()
103 n = snprintf(buf, PRINTF_BUF_SIZE, fmt, iv1, iv2, dv); in test()
113 n = snprintf(buf, PRINTF_BUF_SIZE, fmt, iv, ldv); in test()
121 n = snprintf(buf, PRINTF_BUF_SIZE, fmt, iv, dv); in test()
131 n = snprintf(buf, PRINTF_BUF_SIZE, fmt, ldv); in test()
139 n = snprintf(buf, PRINTF_BUF_SIZE, fmt, dv); in test()
148 n = vsnprintf(buf, PRINTF_BUF_SIZE, fmt, ap); in test()
[all …]
/picolibc-latest/newlib/libc/tinystdio/
Dvfprintf.c211 #define PRINTF_BUF_SIZE 32 macro
213 #define PRINTF_BUF_SIZE 11 macro
217 #define PRINTF_BUF_SIZE 64 macro
219 #define PRINTF_BUF_SIZE 22 macro
495 char __buf[PRINTF_BUF_SIZE]; /* size for -1 in smallest base, without '\0' */ in vfprintf()
497 wchar_t __wbuf[PRINTF_BUF_SIZE/2]; /* for wide char output */ in vfprintf()