Home
last modified time | relevance | path

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

/picolibc-latest/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.c565 prt_data.width = 10 * prt_data.width + to_digit (*fmt); in VFPRINTF()
583 prt_data.prec = 10 * prt_data.prec + to_digit (*fmt); in VFPRINTF()
Dvfwprintf.c319 #define to_digit(c) ((c) - L'0') macro
320 #define is_digit(c) ((unsigned)to_digit (c) <= 9)
701 n = 10 * n + to_digit (ch); in VFWPRINTF()
753 n = 10 * n + to_digit (ch); in VFWPRINTF()
781 n = 10 * n + to_digit (ch); in VFWPRINTF()
798 n = 10 * n + to_digit (ch); in VFWPRINTF()
Dvfprintf.c350 #define to_digit(c) ((c) - '0') macro
351 #define is_digit(c) ((unsigned)to_digit (c) <= 9)
735 n = 10 * n + to_digit (ch); in VFPRINTF()
787 n = 10 * n + to_digit (ch); in VFPRINTF()
815 n = 10 * n + to_digit (ch); in VFPRINTF()
832 n = 10 * n + to_digit (ch); in VFPRINTF()
Dnano-vfscanf.c285 scan_data.width = 10 * scan_data.width + to_digit (*fmt); in _SVFSCANF()