Searched refs:is_digit (Results 1 – 20 of 20) sorted by relevance
36 #define is_digit(ch) \ macro92 (is_digit(ch) || is_letter(ch) || \
208 while (is_digit(*p)) in openpam_dynamic()
145 #define is_digit(c) ((unsigned) to_digit(c) <= 9) macro273 while (is_digit(*cp)) \407 while (is_digit(ch))442 } while (is_digit(ch));863 while (is_digit(*cp)) \916 while (is_digit(ch))930 } while (is_digit(ch));
195 while (is_digit(*cp)) { in addaster()221 while (is_digit(*cp)) { in addwaster()291 while (is_digit(ch)) { in __find_arguments()308 } while (is_digit(ch)); in __find_arguments()480 while (is_digit(ch)) { in __find_warguments()497 } while (is_digit(ch)); in __find_warguments()
58 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
75 #define is_digit(c) (((unsigned)to_digit(c)) <= 9) macro324 while (*fmt != '\0' && is_digit(*fmt)) { in __v2printf()363 while (*fmt != '\0' && is_digit(*fmt)) { in __v2printf()
426 while (is_digit(*cp)) { \ in __vfprintf()539 while (is_digit(ch)) { in __vfprintf()558 } while (is_digit(ch)); in __vfprintf()
500 while (is_digit(*cp)) { \ in __vfwprintf()608 while (is_digit(ch)) { in __vfwprintf()627 } while (is_digit(ch)); in __vfwprintf()
86 if (! is_digit(*q)) in is_number()
735 if (is_digit(text[0]) && text[1] == '\0') in fixredir()1596 && (*out == '\0' || is_digit(*out))) { in readtoken1()1671 } else if (is_digit(c)) { in readtoken1()1676 } while (is_digit(c)); in readtoken1()2071 if (is_digit(*fmt)) { in getprompt()2124 if (namelen == 1 && is_digit(*varname)) { in getprompt()
431 if (is_digit(*ap)) { in umaskcmd()
847 } else if (is_digit(*name)) { in varisset()1003 if (is_digit(*name)) { in varvalue()
1294 if (!is_digit(argv[1][0]) || *end != '\0') in breakcmd()
652 if (is_digit(name[1])) { in getjob_nonotfound()
729 is_digit(unsigned char c) in is_digit() function738 return is_digit(c) || ('A' <= c && c <= 'F'); in is_hex_digit()745 if (is_digit(c)) in hexval()768 if (!is_digit(*ctx->p)) in parse_number()773 while (is_digit(*ctx->p)) { in parse_number()1041 } else if (is_digit(*ctx->p) || *ctx->p == '-') { in parse_value()
36 int is_digit = s >= '0' && s <= '9'; in no_mischief_strncpy() local38 if (is_lower || is_upper || is_digit) { in no_mischief_strncpy()
1336 is_digit(char c) in is_digit() function1352 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' && in getzname()1391 if (strp == NULL || !is_digit(c = *strp)) in getnum()1399 } while (is_digit(c)); in getnum()1508 } else if (is_digit(*strp)) { in getrule()
93 is_digit(char c) in is_digit() function380 while (is_alpha(*cp) || is_digit(*cp) || *cp == '-' || *cp == '+') in abbrok()
292 is_digit(char c) in is_digit() function2091 ok = is_digit(xr); in gethms()4208 while (is_alpha(*cp) || is_digit(*cp) in checkabbr()
160 and is_digit() with NetBSD. Thanks Håvard Eidnes