/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 | 342 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 343 while (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 350 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 354 while (isdigit(UChar(*string))) in NCURSES_SP_NAME() 379 if ((!isdigit(UChar(*string)) && *string != '.') in NCURSES_SP_NAME() 387 while (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 394 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 398 while (isdigit(UChar(*string))) in NCURSES_SP_NAME()
|
H A D | captoinfo.c | 207 while (isdigit(UChar(*sp))) { in cvtchar() 319 if (parameterized >= 0 && isdigit(UChar(*s))) in _nc_captoinfo() 321 if (!(isdigit(UChar(*s)) || *s == '*' || *s == '.')) in _nc_captoinfo() 517 if (isdigit(UChar(*s)) || *s == '*' || *s == '.') in _nc_captoinfo() 544 && isdigit(UChar(ch1)) in bcd_expression() 545 && isdigit(UChar(ch2)) in bcd_expression() 647 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*') in _nc_infotocap() 653 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*') in _nc_infotocap() 805 while (isdigit(UChar(*str)) in _nc_infotocap() 892 while (isdigit(UChar(*str))) { in _nc_infotocap()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
H A D | MILexer.cpp | 119 return isalpha(C) || isdigit(C) || C == '_' || C == '-' || C == '.' || in isIdentifierChar() 313 if (!isdigit(C.peek())) { in maybeLexMachineBasicBlock() 319 while (isdigit(C.peek())) in maybeLexMachineBasicBlock() 342 if (!C.remaining().starts_with(Rule) || !isdigit(C.peek(Rule.size()))) in maybeLexIndex() 347 while (isdigit(C.peek())) in maybeLexIndex() 355 if (!C.remaining().starts_with(Rule) || !isdigit(C.peek(Rule.size()))) in maybeLexIndexAndName() 360 while (isdigit(C.peek())) in maybeLexIndexAndName() 406 if (isdigit(C.peek(Rule.size()))) in maybeLexIRBlock() 416 if (isdigit(C.peek(Rule.size()))) in maybeLexIRValue() 433 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/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/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 337 if (!isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexUIntID() 340 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexUIntID() 444 if (isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexHash() 461 if (!IntEnd && !isdigit(static_cast<unsigned char>(*CurPtr))) in LexIdentifier() 1088 if (!isdigit(static_cast<unsigned char>(TokStart[0])) && in LexDigitOrNegative() 1089 !isdigit(static_cast<unsigned char>(CurPtr[0]))) { in LexDigitOrNegative() 1103 for (; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexDigitOrNegative() 1107 if (isdigit(TokStart[0]) && CurPtr[0] == ':') { in LexDigitOrNegative() 1137 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexDigitOrNegative() 1140 if (isdigit(static_cast<unsigned char>(CurPtr[1])) || in LexDigitOrNegative() [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/include/llvm/TableGen/ |
H A D | StringToOffsetTable.h | 65 if (isdigit(AggregateString[i + 1])) { in EmitString() 66 assert(isdigit(AggregateString[i + 2]) && in EmitString() 67 isdigit(AggregateString[i + 3]) && in EmitString()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
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/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/inet/ |
H A D | inet_net_pton.c | 96 } else if (isascii(ch) && isdigit(ch)) { in inet_net_pton_ipv4() 108 isascii(ch) && isdigit(ch)); in inet_net_pton_ipv4() 117 if (!isascii(ch) || !isdigit(ch)) in inet_net_pton_ipv4() 125 isdigit((unsigned char)(src[0])) && dst > odst) { in inet_net_pton_ipv4() 136 } while ((ch = *src++) != '\0' && isascii(ch) && isdigit(ch)); in inet_net_pton_ipv4()
|
/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
|