/picolibc-3.5.0-3.4.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 | vfwprintf.c | 512 # define GET_ARG(n, ap, type) \ in VFWPRINTF() macro 524 # define GET_ARG(n, ap, type) (va_arg (ap, type)) in VFWPRINTF() macro 533 (flags&QUADINT ? GET_ARG (N, ap, quad_t) : \ in VFWPRINTF() 534 flags&LONGINT ? GET_ARG (N, ap, long) : \ in VFWPRINTF() 535 flags&SHORTINT ? (long)(short)GET_ARG (N, ap, int) : \ in VFWPRINTF() 536 flags&CHARINT ? (long)(signed char)GET_ARG (N, ap, int) : \ in VFWPRINTF() 537 (long)GET_ARG (N, ap, int)) in VFWPRINTF() 539 (flags&QUADINT ? GET_ARG (N, ap, u_quad_t) : \ in VFWPRINTF() 540 flags&LONGINT ? GET_ARG (N, ap, u_long) : \ in VFWPRINTF() 541 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 | 380 _p_p = GET_ARG (N, ap, _type **); \ in _SVFWSCANF() 454 # define GET_ARG(n, ap, type) \ in _SVFWSCANF() macro 465 # define GET_ARG(n, ap, type) (va_arg (ap, type)) in _SVFWSCANF() macro 761 cp = GET_ARG (N, ap, char *); in _SVFWSCANF() 768 sp = GET_ARG (N, ap, short *); in _SVFWSCANF() 773 lp = GET_ARG (N, ap, long *); in _SVFWSCANF() 779 llp = GET_ARG (N, ap, long long*); in _SVFWSCANF() 785 ip = GET_ARG (N, ap, int *); in _SVFWSCANF() 832 p = GET_ARG(N, ap, wchar_t *); in _SVFWSCANF() 870 mbp = GET_ARG(N, ap, char *); in _SVFWSCANF() [all …]
|
D | vfprintf.c | 778 # define GET_ARG(n, ap, type) \ macro 790 # define GET_ARG(n, ap, type) (va_arg (ap, type)) macro 799 (flags&QUADINT ? GET_ARG (N, ap, quad_t) : \ 800 flags&LONGINT ? GET_ARG (N, ap, long) : \ 801 flags&SHORTINT ? (long)(short)GET_ARG (N, ap, int) : \ 802 flags&CHARINT ? (long)(signed char)GET_ARG (N, ap, int) : \ 803 (long)GET_ARG (N, ap, int)) 805 (flags&QUADINT ? GET_ARG (N, ap, u_quad_t) : \ 806 flags&LONGINT ? GET_ARG (N, ap, u_long) : \ 807 flags&SHORTINT ? (u_long)(u_short)GET_ARG (N, ap, int) : \ [all …]
|
D | vfscanf.c | 456 _p_p = GET_ARG (N, ap, _type **); \ in _SVFSCANF() 549 # define GET_ARG(n, ap, type) \ in _SVFSCANF() macro 560 # define GET_ARG(n, ap, type) (va_arg (ap, type)) in _SVFSCANF() macro 855 cp = GET_ARG (N, ap, char *); in _SVFSCANF() 862 sp = GET_ARG (N, ap, short *); in _SVFSCANF() 867 lp = GET_ARG (N, ap, long *); in _SVFSCANF() 873 llp = GET_ARG (N, ap, long long*); in _SVFSCANF() 879 ip = GET_ARG (N, ap, int *); in _SVFSCANF() 942 wcp = GET_ARG (N, ap, wchar_t *); in _SVFSCANF() 1027 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.5.0-3.4.0/newlib/ |
D | ChangeLog-2015 | 547 to GET_ARG in %lc, %ls nad %l[] cases. Fix unterminated string in %l[]
|