Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/stdio/
Dnano-vfscanf_local.h98 #define is_digit(c) ((unsigned)to_digit (c) <= 9) macro
Dvfwprintf.c320 #define is_digit(c) ((unsigned)to_digit (c) <= 9) macro
695 if (is_digit (*fmt)) { in VFWPRINTF()
703 } while (is_digit (ch)); in VFWPRINTF()
747 if (is_digit (*fmt)) { in VFWPRINTF()
755 } while (is_digit (ch)); in VFWPRINTF()
780 while (is_digit (ch)) { in VFWPRINTF()
800 } while (is_digit (ch)); in VFWPRINTF()
1939 while ((ch = *fmt) != '\0' && is_digit (ch)) in get_arg()
1946 while ((ch = *fmt) != '\0' && is_digit (ch)) in get_arg()
Dnano-vfprintf_local.h122 #define is_digit(c) ((unsigned)to_digit (c) <= 9) macro
Dvfprintf.c351 #define is_digit(c) ((unsigned)to_digit (c) <= 9) macro
729 if (is_digit (*fmt)) { in VFPRINTF()
737 } while (is_digit (ch)); in VFPRINTF()
781 if (is_digit (*fmt)) { in VFPRINTF()
789 } while (is_digit (ch)); in VFPRINTF()
814 while (is_digit (ch)) { in VFPRINTF()
834 } while (is_digit (ch)); in VFPRINTF()
2043 while ((ch = *fmt) != '\0' && is_digit (ch)) in get_arg()
2050 while ((ch = *fmt) != '\0' && is_digit (ch)) in get_arg()
Dnano-vfprintf.c564 for (; is_digit (*fmt); fmt++) in VFPRINTF()
582 for (; is_digit (*fmt); fmt++) in VFPRINTF()
Dnano-vfscanf.c284 for (; is_digit (*fmt); fmt++) in _SVFSCANF()