/picolibc-3.7.0-3.6.0/newlib/libc/stdio/ |
D | nano-vfprintf_local.h | 144 #define GET_ARG(n, ap, type) (va_arg ((ap), type)) macro 150 (flags&LONGINT ? GET_ARG (N, (*ap), long) : \ 151 flags&SHORTINT ? (long)(short)GET_ARG (N, (*ap), int) : \ 152 flags&CHARINT ? (long)(signed char)GET_ARG (N, (*ap), int) : \ 153 (long)GET_ARG (N, (*ap), int)) 155 (flags&LONGINT ? GET_ARG (N, (*ap), u_long) : \ 156 flags&SHORTINT ? (u_long)(u_short)GET_ARG (N, (*ap), int) : \ 157 flags&CHARINT ? (u_long)(unsigned char)GET_ARG (N, (*ap), int) : \ 158 (u_long)GET_ARG (N, (*ap), u_int))
|
D | vfprintf.c | 537 # define GET_ARG(n, ap, type) \ in VFPRINTF() macro 549 # define GET_ARG(n, ap, type) (va_arg (ap, type)) in VFPRINTF() macro 558 (flags&QUADINT ? GET_ARG (N, ap, quad_t) : \ in VFPRINTF() 559 flags&LONGINT ? GET_ARG (N, ap, long) : \ in VFPRINTF() 560 flags&SHORTINT ? (long)(short)GET_ARG (N, ap, int) : \ in VFPRINTF() 561 flags&CHARINT ? (long)(signed char)GET_ARG (N, ap, int) : \ in VFPRINTF() 562 (long)GET_ARG (N, ap, int)) in VFPRINTF() 565 (flags&QUADINT ? GET_ARG (N, ap, u_quad_t) : \ in VFPRINTF() 566 flags&LONGINT ? GET_ARG (N, ap, u_long) : \ in VFPRINTF() 567 flags&SHORTINT ? (u_long)(u_short)GET_ARG (N, ap, int) : \ in VFPRINTF() [all …]
|
D | vfwprintf.c | 520 # define GET_ARG(n, ap, type) \ in VFWPRINTF() macro 532 # define GET_ARG(n, ap, type) (va_arg (ap, type)) in VFWPRINTF() macro 541 (flags&QUADINT ? GET_ARG (N, ap, quad_t) : \ in VFWPRINTF() 542 flags&LONGINT ? GET_ARG (N, ap, long) : \ in VFWPRINTF() 543 flags&SHORTINT ? (long)(short)GET_ARG (N, ap, int) : \ in VFWPRINTF() 544 flags&CHARINT ? (long)(signed char)GET_ARG (N, ap, int) : \ in VFWPRINTF() 545 (long)GET_ARG (N, ap, int)) in VFWPRINTF() 547 (flags&QUADINT ? GET_ARG (N, ap, u_quad_t) : \ in VFWPRINTF() 548 flags&LONGINT ? GET_ARG (N, ap, u_long) : \ in VFWPRINTF() 549 flags&SHORTINT ? (u_long)(u_short)GET_ARG (N, ap, int) : \ in VFWPRINTF() [all …]
|
D | nano-vfprintf_i.c | 124 *--cp = GET_ARG (N, *ap, int); in _printf_i() 206 *GET_ARG (N, *ap, long_ptr_t) = pdata->ret; in _printf_i() 208 *GET_ARG (N, *ap, short_ptr_t) = pdata->ret; in _printf_i() 210 *GET_ARG (N, *ap, int_ptr_t) = pdata->ret; in _printf_i() 216 cp = GET_ARG (N, *ap, char_ptr_t); in _printf_i()
|
D | nano-vfscanf_i.c | 60 p = GET_ARG (N, *ap, char *); in _scanf_chars() 219 *GET_ARG (N, *ap, void **) = (void *) (uintptr_t) ul; in _scanf_i() 221 *GET_ARG (N, *ap, short *) = ul; in _scanf_i() 223 *GET_ARG (N, *ap, long *) = ul; in _scanf_i() 225 *GET_ARG (N, *ap, int *) = ul; in _scanf_i()
|
D | vfwscanf.c | 386 _p_p = GET_ARG (N, ap, _type **); \ in _SVFWSCANF() 460 # define GET_ARG(n, ap, type) \ in _SVFWSCANF() macro 471 # define GET_ARG(n, ap, type) (va_arg (ap, type)) in _SVFWSCANF() macro 771 cp = GET_ARG (N, ap, char *); in _SVFWSCANF() 778 sp = GET_ARG (N, ap, short *); in _SVFWSCANF() 783 lp = GET_ARG (N, ap, long *); in _SVFWSCANF() 789 llp = GET_ARG (N, ap, long long*); in _SVFWSCANF() 795 ip = GET_ARG (N, ap, int *); in _SVFWSCANF() 842 p = GET_ARG(N, ap, wchar_t *); in _SVFWSCANF() 880 mbp = GET_ARG(N, ap, char *); in _SVFWSCANF() [all …]
|
D | vfscanf.c | 462 _p_p = GET_ARG (N, ap, _type **); \ in _SVFSCANF() 555 # define GET_ARG(n, ap, type) \ in _SVFSCANF() macro 566 # define GET_ARG(n, ap, type) (va_arg (ap, type)) in _SVFSCANF() macro 865 cp = GET_ARG (N, ap, char *); in _SVFSCANF() 872 sp = GET_ARG (N, ap, short *); in _SVFSCANF() 877 lp = GET_ARG (N, ap, long *); in _SVFSCANF() 883 llp = GET_ARG (N, ap, long long*); in _SVFSCANF() 889 ip = GET_ARG (N, ap, int *); in _SVFSCANF() 952 wcp = GET_ARG (N, ap, wchar_t *); in _SVFSCANF() 1037 p = GET_ARG (N, ap, char *); in _SVFSCANF() [all …]
|
D | nano-vfscanf_float.c | 323 *GET_ARG (N, *ap, double *) = fp; in _scanf_float() 326 ldp = GET_ARG (N, *ap, _LONG_DOUBLE *); in _scanf_float() 331 flp = GET_ARG (N, *ap, float *); in _scanf_float()
|
D | nano-vfscanf.c | 350 *GET_ARG (N, ap_copy, short *) = scan_data.nread; in _SVFSCANF() 352 *GET_ARG (N, ap_copy, long *) = scan_data.nread; in _SVFSCANF() 354 *GET_ARG (N, ap_copy, int *) = scan_data.nread; in _SVFSCANF()
|
D | nano-vfprintf.c | 556 prt_data.width = GET_ARG (n, ap_copy, int); in VFPRINTF() 577 prt_data.prec = GET_ARG (n, ap_copy, int); in VFPRINTF() 609 GET_ARG (N, ap_copy, _LONG_DOUBLE); in VFPRINTF() 611 GET_ARG (N, ap_copy, double); in VFPRINTF()
|
D | nano-vfscanf_local.h | 140 #define GET_ARG(n, ap, type) (va_arg ((ap), type)) macro
|
D | nano-vfprintf_float.c | 191 _fpvalue = (double) GET_ARG (N, *ap, _LONG_DOUBLE); in _printf_float() 195 _fpvalue = GET_ARG (N, *ap, double); in _printf_float()
|
/picolibc-3.7.0-3.6.0/newlib/ |
D | ChangeLog-2015 | 547 to GET_ARG in %lc, %ls nad %l[] cases. Fix unterminated string in %l[]
|