| /freebsd-12-stable/contrib/sendmail/libsmutil/ |
| 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-12-stable/contrib/sendmail/src/ |
| 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-12-stable/cddl/contrib/opensolaris/common/util/ |
| 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-12-stable/sys/cddl/contrib/opensolaris/common/util/ |
| 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-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/ |
| D | tst.ProbeDescription.ksh.out | 3 ::isdigit:entry 4 :genunix:isdigit:entry 5 fbt:genunix:isdigit:entry 6 fbt:genunix:isdigit:entry
|
| 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-12-stable/sys/netinet/libalias/ |
| D | alias_ftp.c | 364 if (isdigit(ch)) { in ParseFtpPortCommand() 374 if (isdigit(ch)) in ParseFtpPortCommand() 384 if (isdigit(ch)) in ParseFtpPortCommand() 449 if (isdigit(ch)) { in ParseFtpEprtCommand() 459 if (isdigit(ch)) in ParseFtpEprtCommand() 468 if (isdigit(ch)) { in ParseFtpEprtCommand() 475 if (isdigit(ch)) in ParseFtpEprtCommand() 527 if (isdigit(ch)) { in ParseFtp227Reply() 537 if (isdigit(ch)) in ParseFtp227Reply() 547 if (isdigit(ch)) in ParseFtp227Reply() [all …]
|
| /freebsd-12-stable/contrib/ncurses/ncurses/tinfo/ |
| D | lib_tputs.c | 311 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 312 while (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 319 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 323 while (isdigit(UChar(*string))) in NCURSES_SP_NAME() 348 if ((!isdigit(UChar(*string)) && *string != '.') in NCURSES_SP_NAME() 356 while (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 363 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME() 367 while (isdigit(UChar(*string))) in NCURSES_SP_NAME()
|
| D | captoinfo.c | 196 while (isdigit(UChar(*sp))) { in cvtchar() 297 if (parameterized >= 0 && isdigit(UChar(*s))) in _nc_captoinfo() 299 if (!(isdigit(UChar(*s)) || *s == '*' || *s == '.')) in _nc_captoinfo() 484 if (isdigit(UChar(*s)) || *s == '*' || *s == '.') in _nc_captoinfo() 508 && isdigit(UChar(ch1)) in bcd_expression() 509 && isdigit(UChar(ch2)) in bcd_expression() 596 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*') in _nc_infotocap() 602 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*') in _nc_infotocap() 633 if (isdigit(UChar(xx1))) { in _nc_infotocap() 636 if (!isdigit(UChar(str[1]))) in _nc_infotocap() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
| D | MILexer.cpp | 121 return isalpha(C) || isdigit(C) || C == '_' || C == '-' || C == '.' || in isIdentifierChar() 300 if (!isdigit(C.peek())) { in maybeLexMachineBasicBlock() 306 while (isdigit(C.peek())) in maybeLexMachineBasicBlock() 329 if (!C.remaining().startswith(Rule) || !isdigit(C.peek(Rule.size()))) in maybeLexIndex() 334 while (isdigit(C.peek())) in maybeLexIndex() 342 if (!C.remaining().startswith(Rule) || !isdigit(C.peek(Rule.size()))) in maybeLexIndexAndName() 347 while (isdigit(C.peek())) in maybeLexIndexAndName() 393 if (isdigit(C.peek(Rule.size()))) in maybeLexIRBlock() 403 if (isdigit(C.peek(Rule.size()))) in maybeLexIRValue() 420 while (isdigit(C.peek())) in lexVirtualRegister() [all …]
|
| /freebsd-12-stable/usr.bin/hexdump/ |
| D | parse.c | 110 if (isdigit(*p)) { in add() 111 for (savep = p; isdigit(*p); ++p); in add() 126 if (isdigit(*p)) { in add() 127 for (savep = p; isdigit(*p); ++p); in add() 173 if (*fmt == '.' && isdigit(*++fmt)) { in size() 175 while (isdigit(*++fmt)); in size() 248 if (*p1 == '.' && isdigit(*++p1)) { in rewrite() 251 while (isdigit(*++p1)); in rewrite()
|
| /freebsd-12-stable/lib/libc/resolv/ |
| D | res_debug.c | 785 while (isdigit((unsigned char)*cp)) in precsize_aton() 790 if (isdigit((unsigned char)*cp)) { in precsize_aton() 792 if (isdigit((unsigned char)*cp)) { in precsize_aton() 823 while (isdigit((unsigned char)*cp)) in latlon2ul() 829 if (!(isdigit((unsigned char)*cp))) in latlon2ul() 832 while (isdigit((unsigned char)*cp)) in latlon2ul() 838 if (!(isdigit((unsigned char)*cp))) in latlon2ul() 841 while (isdigit((unsigned char)*cp)) in latlon2ul() 846 if (isdigit((unsigned char)*cp)) { in latlon2ul() 848 if (isdigit((unsigned char)*cp)) { in latlon2ul() [all …]
|
| /freebsd-12-stable/usr.sbin/rtadvd/ |
| D | advcap.c | 271 if (isdigit(*bp)) { in tskip() 272 while (isdigit(*bp++)) in tskip() 322 while (isdigit(*bp)) in tgetnum() 420 if (isdigit(c)) { in tdecode() 424 while (--i && isdigit(*str)); in tdecode()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/AsmParser/ |
| D | LLLexer.cpp | 338 if (!isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexUIntID() 341 for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexUIntID() 459 if (!IntEnd && !isdigit(static_cast<unsigned char>(*CurPtr))) in LexIdentifier() 1079 if (!isdigit(static_cast<unsigned char>(TokStart[0])) && in LexDigitOrNegative() 1080 !isdigit(static_cast<unsigned char>(CurPtr[0]))) { in LexDigitOrNegative() 1094 for (; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexDigitOrNegative() 1098 if (isdigit(TokStart[0]) && CurPtr[0] == ':') { in LexDigitOrNegative() 1128 while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr; in LexDigitOrNegative() 1131 if (isdigit(static_cast<unsigned char>(CurPtr[1])) || in LexDigitOrNegative() 1133 isdigit(static_cast<unsigned char>(CurPtr[2])))) { in LexDigitOrNegative() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/ |
| D | cctype | 23 int isdigit(int c); 62 #ifdef isdigit 63 #undef isdigit 107 using ::isdigit _LIBCPP_USING_IF_EXISTS;
|
| /freebsd-12-stable/lib/libfigpar/ |
| D | string_m.c | 226 d[0] = (isdigit(*(chr+1)) && *(chr+1) < '8') ? in strexpand() 229 d[1] = (isdigit(*(chr+1)) && *(chr+1) < '8') ? in strexpand() 232 d[2] = (isdigit(*(chr+1)) && *(chr+1) < '8') ? in strexpand() 242 if (isdigit(*chr) && *chr < '8') { in strexpand()
|
| /freebsd-12-stable/contrib/netbsd-tests/lib/libcurses/director/ |
| 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-12-stable/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| 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-12-stable/usr.bin/pr/ |
| D | egetopt.c | 122 if (strchr(ostr, '#') && (isdigit(eoptopt) || in egetopt() 124 isdigit(*place)))) { in egetopt() 129 if (!isdigit(*p)) in egetopt()
|
| /freebsd-12-stable/contrib/ncurses/form/ |
| D | fty_num.c | 50 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) 52 #define isDigit(c) isdigit(UChar(c)) 246 if (!isdigit(UChar(*bp))) in Check_This_Field() 255 if (!isdigit(UChar(*bp))) in Check_This_Field()
|
| /freebsd-12-stable/lib/libc/inet/ |
| D | inet_net_pton.c | 102 } else if (isascii(ch) && isdigit(ch)) { in inet_net_pton_ipv4() 114 isascii(ch) && isdigit(ch)); in inet_net_pton_ipv4() 123 if (!isascii(ch) || !isdigit(ch)) in inet_net_pton_ipv4() 131 isdigit((unsigned char)(src[0])) && dst > odst) { in inet_net_pton_ipv4() 142 } while ((ch = *src++) != '\0' && isascii(ch) && isdigit(ch)); in inet_net_pton_ipv4()
|
| /freebsd-12-stable/usr.sbin/chroot/ |
| D | chroot.c | 105 if (isdigit((unsigned char)*group)) { in main() 126 if (isdigit((unsigned char)*p)) { in main() 143 if (isdigit((unsigned char)*user)) { in main()
|
| /freebsd-12-stable/usr.bin/chpass/ |
| D | util.c | 104 if (isdigit(*t)) { in atot() 116 if (!(t = strtok(NULL, " \t,")) || !isdigit(*t)) in atot() 119 if (!(t = strtok(NULL, " \t,")) || !isdigit(*t)) in atot()
|
| /freebsd-12-stable/contrib/ncurses/progs/ |
| D | tabs.c | 98 if (isdigit(UChar(ch))) { in decode_tabs() 219 } else if (isdigit(last) || last == ',') { in trimmed_tab_list() 307 if (!(isdigit(ch) || ch == ',' || ch == '+')) { in legal_tab_list() 330 (isdigit(UChar(*value)) || in skip_list() 465 if (isdigit(UChar(*option))) { in main()
|
| /freebsd-12-stable/lib/libc/iconv/ |
| D | citrus_bcs_strtol.c | 50 #undef isdigit 51 #define isdigit(c) _bcs_isdigit(c) macro
|