| /src/external/bsd/openpam/dist/lib/libpam/ |
| openpam_ctype.h | 38 #define is_digit(ch) \ macro 94 (is_digit(ch) || is_letter(ch) || \
|
| openpam_dynamic.c | 213 while (is_digit(*p))
|
| /src/bin/sh/ |
| mystring.c | 120 if (!is_digit(*s) || ((n = strtoimax(s, &ep, 10)), 138 if (! is_digit(*p)) 164 is_digit(*s) || atoi(s) != 0)
|
| syntax.h | 82 #define is_digit(c) ((unsigned)((c) - '0') <= 9) macro
|
| arith_token.c | 83 if (is_digit(token)) {
|
| options.c | 540 if (is_digit(*value) && strtol(value, NULL, 10) == 1) {
|
| miscbltin.c | 551 if (is_digit(*ap)) {
|
| parser.c | 2247 else if (is_name(c) || is_digit(c)) 2291 } else if (is_digit(c)) { 2296 } while (subtype != VSNORMAL && is_digit(c));
|
| expand.c | 1168 } else if (is_digit(*name)) { 1320 if (is_digit(*name)) {
|
| /src/external/gpl3/gcc/dist/contrib/unicode/from_glibc/ |
| unicode_utils.py | 287 def is_digit(code_point): function 349 return (is_digit(code_point) 389 and not is_digit(code_point)) 459 if (is_alpha(code_point) and is_digit(code_point)): 471 if (is_space(code_point) and is_digit(code_point)): 483 if (is_cntrl(code_point) and is_digit(code_point)): 501 if (is_punct(code_point) and is_digit(code_point)):
|
| /src/external/gpl3/gcc.old/dist/contrib/unicode/from_glibc/ |
| unicode_utils.py | 287 def is_digit(code_point): function 349 return (is_digit(code_point) 389 and not is_digit(code_point)) 459 if (is_alpha(code_point) and is_digit(code_point)): 471 if (is_space(code_point) and is_digit(code_point)): 483 if (is_cntrl(code_point) and is_digit(code_point)): 501 if (is_punct(code_point) and is_digit(code_point)):
|
| /src/games/rogue/ |
| play.c | 240 } while (is_digit(ch));
|
| message.c | 354 is_digit(int ch) function
|
| rogue.h | 524 boolean is_digit(int);
|
| /src/lib/libc/stdio/ |
| vsnprintf_ss.c | 73 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro 220 while (is_digit(ch)) { 240 } while (is_digit(ch));
|
| vfwprintf.c | 252 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro 800 while (is_digit(*cp)) { \ 939 while (is_digit(ch)) { 958 } while (is_digit(ch)); 1609 while (is_digit(*cp)) { \ 1659 while (is_digit(ch)) { 1671 } while (is_digit(ch));
|
| /src/external/bsd/wpa/dist/src/ap/ |
| taxonomy.c | 36 int is_digit = s >= '0' && s <= '9'; local 38 if (is_lower || is_upper || is_digit) {
|
| /src/sys/kern/ |
| subr_prf.c | 1186 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro 1343 while (is_digit(ch)) { 1363 } while (is_digit(ch));
|
| /src/lib/libc/time/ |
| zdump.c | 98 is_digit(char c) function 332 while (is_alpha(*cp) || is_digit(*cp) || *cp == '-' || *cp == '+')
|
| localtime.c | 1456 is_digit(char c) function 1472 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' && 1511 if (strp == NULL || !is_digit(c = *strp)) { 1523 } while (is_digit(c)); 1634 } else if (is_digit(*strp)) {
|
| zic.c | 317 is_digit(char c) function 2114 ok = is_digit(xr); 4245 while (is_alpha(*cp) || is_digit(*cp)
|
| /src/external/gpl2/gettext/dist/gettext-tools/libgrep/ |
| dfa.c | 636 FUNC(is_digit, ISDIGIT) 661 { ":digit:]", is_digit },
|
| /src/external/gpl2/grep/dist/src/ |
| dfa.c | 662 FUNC(is_digit, ISDIGIT) 687 { ":digit:]", is_digit },
|
| /src/external/gpl2/groff/dist/src/devices/grohtml/ |
| post-html.cpp | 129 * is_digit - returns TRUE if character, ch, is a digit. 132 static int is_digit (char ch) function 2517 || is_digit(header.header_buffer[i]))) ; i++) {
|
| /src/external/gpl2/diffutils/dist/lib/ |
| regex.c | 3343 boolean is_digit = STREQ (str, "digit"); 3370 if ( (is_digit && ISDIGIT (ch))
|