Searched refs:va (Results 1 – 3 of 3) sorted by relevance
| /external/platform/pico/rp2_common/pico_printf/ |
| A D | printf.c | 771 va_arg(va, double); in _vsnprintf() 785 va_arg(va, double); in _vsnprintf() 877 va_list va; in WRAPPER_FUNC() local 878 va_start(va, format); in WRAPPER_FUNC() 880 va_end(va); in WRAPPER_FUNC() 885 va_list va; in WRAPPER_FUNC() local 886 va_start(va, format); in WRAPPER_FUNC() 888 va_end(va); in WRAPPER_FUNC() 923 va_list va; in weak_raw_printf() local 924 va_start(va, fmt); in weak_raw_printf() [all …]
|
| /external/platform/pico/rp2_common/pico_printf/include/pico/ |
| A D | printf.h | 69 #define weak_raw_vprintf(fmt,va) ({vprintf(fmt,va); true;}) 80 int vfctprintf(void (*out)(char character, void *arg), void *arg, const char *format, va_list va); 85 #define weak_raw_vprintf(fmt,va) ({vprintf(fmt,va); true;})
|
| /external/platform/pico/rp2_common/pico_stdio/ |
| A D | stdio.c | 247 int WRAPPER_FUNC(vprintf)(const char *format, va_list va) { in WRAPPER_FUNC() 258 ret = vfctprintf(stdio_buffered_printer, &buffer, format, va); in WRAPPER_FUNC() 265 extern int REAL_FUNC(vprintf)(const char *format, va_list va); in WRAPPER_FUNC() 266 ret = REAL_FUNC(vprintf)(format, va); in WRAPPER_FUNC() 276 va_list va; in WRAPPER_FUNC() local 277 va_start(va, format); in WRAPPER_FUNC() 278 int ret = vprintf(format, va); in WRAPPER_FUNC() 279 va_end(va); in WRAPPER_FUNC()
|
Completed in 11 milliseconds