Searched refs:is_digit (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dvfprintf.c242 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
432 while (is_digit(*cp)) { \
558 while (is_digit(ch)) {
587 } while (is_digit(ch));
1184 while (is_digit(*cp)) { \
1240 while (is_digit(ch)) {
1252 } while (is_digit(ch));
H A Dvfwprintf.c259 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
420 while (is_digit(*cp)) { \
534 while (is_digit(ch)) {
563 } while (is_digit(ch));
1166 while (is_digit(*cp)) { \
1215 while (is_digit(ch)) {
1227 } while (is_digit(ch));
/bionic/libc/tzcode/
H A Dprivate.h115 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
H A Dlocaltime.c666 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
704 if (strp == NULL || !is_digit(c = *strp))
712 } while (is_digit(c));
819 } else if (is_digit(*strp)) {

Completed in 95 milliseconds