Home
last modified time | relevance | path

Searched refs:to_digit (Results 1 – 6 of 6) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/stdio/
Dnano-vfscanf_local.h97 #define to_digit(c) ((c) - '0') macro
98 #define is_digit(c) ((unsigned)to_digit (c) <= 9)
Dnano-vfprintf_local.h121 #define to_digit(c) ((c) - '0') macro
122 #define is_digit(c) ((unsigned)to_digit (c) <= 9)
Dnano-vfprintf.c567 prt_data.width = 10 * prt_data.width + to_digit (*fmt); in VFPRINTF()
585 prt_data.prec = 10 * prt_data.prec + to_digit (*fmt); in VFPRINTF()
Dvfwprintf.c321 #define to_digit(c) ((c) - L'0') macro
322 #define is_digit(c) ((unsigned)to_digit (c) <= 9)
703 n = 10 * n + to_digit (ch); in VFWPRINTF()
755 n = 10 * n + to_digit (ch); in VFWPRINTF()
783 n = 10 * n + to_digit (ch); in VFWPRINTF()
800 n = 10 * n + to_digit (ch); in VFWPRINTF()
Dvfprintf.c355 #define to_digit(c) ((c) - '0') macro
356 #define is_digit(c) ((unsigned)to_digit (c) <= 9)
740 n = 10 * n + to_digit (ch); in VFPRINTF()
792 n = 10 * n + to_digit (ch); in VFPRINTF()
820 n = 10 * n + to_digit (ch); in VFPRINTF()
837 n = 10 * n + to_digit (ch); in VFPRINTF()
Dnano-vfscanf.c287 scan_data.width = 10 * scan_data.width + to_digit (*fmt); in _SVFSCANF()