| /freebsd/lib/libc/string/ |
| H A D | strverscmp.c | 28 if (!isdigit(*u1) || !isdigit(*u2)) { in strverscmp() 52 if (!isdigit(*u1) && isdigit(*u2)) in strverscmp() 54 if (!isdigit(*u2) && isdigit(*u1)) in strverscmp() 67 for (; isdigit(*u1); u1++) in strverscmp() 69 for (; isdigit(*u2); u2++) in strverscmp() 85 for (; isdigit(*u1) && isdigit(*u2); u1++, u2++) { in strverscmp()
|
| /freebsd/contrib/sendmail/libsmutil/ |
| H A D | err.c | 31 if (isascii(m[0]) && isdigit(m[0]) && 32 isascii(m[1]) && isdigit(m[1]) && 33 isascii(m[2]) && isdigit(m[2]) && m[3] == ' ') 55 if (isascii(m[0]) && isdigit(m[0]) && 56 isascii(m[1]) && isdigit(m[1]) && 57 isascii(m[2]) && isdigit(m[2]) && m[3] == ' ')
|
| /freebsd/contrib/sendmail/src/ |
| H A D | trace.c | 76 while (isascii(*s) && isdigit(*s) && i < tTsize) 84 while (isascii(*s) && isdigit(*s) && i >= tTsize) 92 while (isascii(*++s) && isdigit(*s) && i < tTsize) 96 while (isascii(*s) && isdigit(*s) && i >= tTsize) 106 while (isascii(*++s) && isdigit(*s)) 156 while (isascii(*s) && isdigit(*s)) 219 if (isascii(*s) && isdigit(*s))
|
| /freebsd/cddl/contrib/opensolaris/common/util/ |
| H A D | strtolctype.h | 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch)) 51 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9') macro 56 #define isxdigit(ch) (isdigit(ch) || ((ch) >= 'a' && (ch) <= 'f') || \ 62 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A') 73 (isdigit(x) || ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z'))
|
| /freebsd/sys/cddl/contrib/opensolaris/common/util/ |
| H A D | strtolctype.h | 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch)) 51 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9') macro 56 #define isxdigit(ch) (isdigit(ch) || ((ch) >= 'a' && (ch) <= 'f') || \ 62 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A') 73 (isdigit(x) || ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z'))
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/ |
| H A D | tst.ProbeDescription.ksh.out | 3 ::isdigit:entry 4 :genunix:isdigit:entry 5 fbt:genunix:isdigit:entry 6 fbt:genunix:isdigit:entry
|
| H A D | tst.ProbeDescription.ksh | 40 java -cp test.jar TestProbeDescription isdigit entry 41 java -cp test.jar TestProbeDescription genunix isdigit entry 42 java -cp test.jar TestProbeDescription fbt genunix isdigit entry 43 java -cp test.jar TestProbeDescription fbt:genunix:isdigit:entry
|
| /freebsd/sys/netinet/libalias/ |
| H A D | alias_ftp.c | 362 if (isdigit(ch)) { in ParseFtpPortCommand() 372 if (isdigit(ch)) in ParseFtpPortCommand() 382 if (isdigit(ch)) in ParseFtpPortCommand() 447 if (isdigit(ch)) { in ParseFtpEprtCommand() 457 if (isdigit(ch)) in ParseFtpEprtCommand() 466 if (isdigit(ch)) { in ParseFtpEprtCommand() 473 if (isdigit(ch)) in ParseFtpEprtCommand() 525 if (isdigit(ch)) { in ParseFtp227Reply() 535 if (isdigit(ch)) in ParseFtp227Reply() 545 if (isdigit(ch)) in ParseFtp227Reply() [all …]
|
| /freebsd/contrib/ncurses/ncurses/tinfo/ |
| H A D | lib_tputs.c | 344 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 345 while (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 352 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 356 while (isdigit(UChar(*string))) in NCURSES_SP_NAME() 381 if ((!isdigit(UChar(*string)) && *string != '.') in NCURSES_SP_NAME() 389 while (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 396 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 400 while (isdigit(UChar(*string))) in NCURSES_SP_NAME()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
| H A D | MILexer.cpp | 119 return isalpha(C) || isdigit(C) || C == '_' || C == '-' || C == '.' || in isIdentifierChar() 316 if (!isdigit(C.peek())) { in maybeLexMachineBasicBlock() 322 while (isdigit(C.peek())) in maybeLexMachineBasicBlock() 345 if (!C.remaining().starts_with(Rule) || !isdigit(C.peek(Rule.size()))) in maybeLexIndex() 350 while (isdigit(C.peek())) in maybeLexIndex() 358 if (!C.remaining().starts_with(Rule) || !isdigit(C.peek(Rule.size()))) in maybeLexIndexAndName() 363 while (isdigit(C.peek())) in maybeLexIndexAndName() 409 if (isdigit(C.peek(Rule.size()))) in maybeLexIRBlock() 419 if (isdigit(C.peek(Rule.size()))) in maybeLexIRValue() 436 while (isdigit(C.peek())) in lexVirtualRegister() [all …]
|
| /freebsd/usr.bin/hexdump/ |
| H A D | parse.c | 102 if (isdigit(*p)) { in add() 103 for (savep = p; isdigit(*p); ++p); in add() 118 if (isdigit(*p)) { in add() 119 for (savep = p; isdigit(*p); ++p); in add() 168 if (*fmt == '.' && isdigit(*++fmt)) { in size() 170 while (isdigit(*++fmt)); in size() 249 if (*p1 == '.' && isdigit(*++p1)) { in rewrite() 252 while (isdigit(*++p1)); in rewrite()
|
| /freebsd/lib/libc/inet/ |
| H A D | inet_net_pton.c | 124 } else if (isascii(ch) && isdigit(ch)) { in inet_net_pton_ipv4() 136 isascii(ch) && isdigit(ch)); in inet_net_pton_ipv4() 145 if (!isascii(ch) || !isdigit(ch)) in inet_net_pton_ipv4() 153 isdigit((unsigned char)src[0]) && dst > odst) { in inet_net_pton_ipv4() 165 isascii(ch) && isdigit(ch)); in inet_net_pton_ipv4()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LexHLSLRootSignature.cpp | 19 return isdigit(C) // integer support in isNumberChar() 51 if (isdigit(C) || C == '.') { in lexToken() 55 bool IsInteger = Result.NumSpelling.find_if_not(isdigit) == StringRef::npos; in lexToken() 73 if ((C == 't' || C == 's' || C == 'u' || C == 'b') && isdigit(NextC)) { in lexToken()
|
| /freebsd/lib/libc/resolv/ |
| H A D | res_debug.c | 778 while (isdigit((unsigned char)*cp)) in precsize_aton() 783 if (isdigit((unsigned char)*cp)) { in precsize_aton() 785 if (isdigit((unsigned char)*cp)) { in precsize_aton() 816 while (isdigit((unsigned char)*cp)) in latlon2ul() 822 if (!(isdigit((unsigned char)*cp))) in latlon2ul() 825 while (isdigit((unsigned char)*cp)) in latlon2ul() 831 if (!(isdigit((unsigned char)*cp))) in latlon2ul() 834 while (isdigit((unsigned char)*cp)) in latlon2ul() 839 if (isdigit((unsigned char)*cp)) { in latlon2ul() 841 if (isdigit((unsigned char)*cp)) { in latlon2ul() [all …]
|
| /freebsd/usr.sbin/rtadvd/ |
| H A D | advcap.c | 270 if (isdigit(*bp)) { in tskip() 271 while (isdigit(*bp++)) in tskip() 321 while (isdigit(*bp)) in tgetnum() 419 if (isdigit(c)) { in tdecode() 423 while (--i && isdigit(*str)); in tdecode()
|
| /freebsd/lib/libfigpar/ |
| H A D | string_m.c | 221 d[0] = (isdigit(*(chr+1)) && *(chr+1) < '8') ? in strexpand() 224 d[1] = (isdigit(*(chr+1)) && *(chr+1) < '8') ? in strexpand() 227 d[2] = (isdigit(*(chr+1)) && *(chr+1) < '8') ? in strexpand() 237 if (isdigit(*chr) && *chr < '8') { in strexpand()
|
| /freebsd/contrib/netbsd-tests/lib/libcurses/director/ |
| H A D | testlang_conf.l | 65 if (isdigit(*(p+1)) && *(p+2) && isdigit(*(p+2)) && in dequote() 66 *(p+3) && isdigit(*(p+3))) in dequote() 84 if (isdigit(*p)) { in dequote() 85 if (*(p+1) && isdigit(*(p+1)) && *(p+2) && in dequote() 86 isdigit(*(p+2))) { in dequote()
|
| /freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 376 if (!isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexUIntID() 379 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexUIntID() 483 if (isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexHash() 500 if (!IntEnd && !isdigit(static_cast<unsigned char>(*CurPtr))) in LexIdentifier() 1144 if (!isdigit(static_cast<unsigned char>(TokStart[0])) && in LexDigitOrNegative() 1145 !isdigit(static_cast<unsigned char>(CurPtr[0]))) { in LexDigitOrNegative() 1159 for (; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexDigitOrNegative() 1163 if (isdigit(TokStart[0]) && CurPtr[0] == ':') { in LexDigitOrNegative() 1193 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexDigitOrNegative() 1196 if (isdigit(static_cast<unsigned char>(CurPtr[1])) || in LexDigitOrNegative() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | cctype | 23 int isdigit(int c); 70 #ifdef isdigit 71 # undef isdigit 114 using ::isdigit _LIBCPP_USING_IF_EXISTS;
|
| /freebsd/usr.bin/pr/ |
| H A D | egetopt.c | 114 if (strchr(ostr, '#') && (isdigit(eoptopt) || in egetopt() 116 isdigit(*place)))) { in egetopt() 121 if (!isdigit(*p)) in egetopt()
|
| /freebsd/contrib/ncurses/form/ |
| H A D | fty_num.c | 51 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) 53 #define isDigit(c) isdigit(UChar(c)) 247 if (!isdigit(UChar(*bp))) in Check_This_Field() 256 if (!isdigit(UChar(*bp))) in Check_This_Field()
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | cctype | 23 int isdigit(int c); 73 # ifdef isdigit 74 # undef isdigit 117 using ::isdigit _LIBCPP_USING_IF_EXISTS;
|
| /freebsd/usr.bin/chpass/ |
| H A D | util.c | 96 if (isdigit(*t)) { in atot() 108 if (!(t = strtok(NULL, " \t,")) || !isdigit(*t)) in atot() 111 if (!(t = strtok(NULL, " \t,")) || !isdigit(*t)) in atot()
|
| /freebsd/lib/libc/iconv/ |
| H A D | citrus_bcs_strtol.c | 48 #undef isdigit 49 #define isdigit(c) _bcs_isdigit(c) macro
|
| H A D | citrus_bcs_strtoul.c | 48 #undef isdigit 49 #define isdigit(c) _bcs_isdigit(c) macro
|