Home
last modified time | relevance | path

Searched refs:isdigit (Results 1 – 25 of 648) sorted by relevance

12345678910>>...26

/freebsd/lib/libc/string/
H A Dstrverscmp.c28 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 Derr.c31 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 Dtrace.c76 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 Dstrtolctype.h49 #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 Dstrtolctype.h49 #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 Dtst.ProbeDescription.ksh.out3 ::isdigit:entry
4 :genunix:isdigit:entry
5 fbt:genunix:isdigit:entry
6 fbt:genunix:isdigit:entry
H A Dtst.ProbeDescription.ksh40 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 Dalias_ftp.c362 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 Dlib_tputs.c340 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME()
341 while (isdigit(UChar(*string))) { in NCURSES_SP_NAME()
348 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME()
352 while (isdigit(UChar(*string))) in NCURSES_SP_NAME()
377 if ((!isdigit(UChar(*string)) && *string != '.') in NCURSES_SP_NAME()
385 while (isdigit(UChar(*string))) { in NCURSES_SP_NAME()
392 if (isdigit(UChar(*string))) { in NCURSES_SP_NAME()
396 while (isdigit(UChar(*string))) in NCURSES_SP_NAME()
H A Dcaptoinfo.c207 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()
644 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*') in _nc_infotocap()
650 while (isdigit(UChar(*padding)) || *padding == '.' || *padding == '*') in _nc_infotocap()
797 while (isdigit(UChar(*str)) in _nc_infotocap()
884 while (isdigit(UChar(*str))) { in _nc_infotocap()
/freebsd/usr.bin/hexdump/
H A Dparse.c102 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/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp309 if (!isdigit(C.peek())) { in maybeLexMachineBasicBlock()
315 while (isdigit(C.peek())) in maybeLexMachineBasicBlock()
343 while (isdigit(C.peek())) in maybeLexIndex()
356 while (isdigit(C.peek())) in maybeLexIndexAndName()
429 while (isdigit(C.peek())) in lexVirtualRegister()
457 if (isdigit(C.peek(1))) in maybeLexRegister()
480 if (!isdigit(C.peek(1))) in maybeLexGlobalValue()
486 while (isdigit(C.peek())) in maybeLexGlobalValue()
555 while (isdigit(C.peek())) in lexFloatingPointLiteral()
591 if (!isdigit(C.peek()) && (C.peek() != '-' || !isdigit(C.peek(1)))) in maybeLexNumericalLiteral()
[all …]
/freebsd/lib/libc/resolv/
H A Dres_debug.c778 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()
950 while (isdigit((unsigned char)*cp)) in loc_aton()
[all …]
/freebsd/usr.sbin/rtadvd/
H A Dadvcap.c270 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 Dstring_m.c223 d[0] = (isdigit(*(chr+1)) && *(chr+1) < '8') ? in strexpand()
226 d[1] = (isdigit(*(chr+1)) && *(chr+1) < '8') ? in strexpand()
229 d[2] = (isdigit(*(chr+1)) && *(chr+1) < '8') ? in strexpand()
239 if (isdigit(*chr) && *chr < '8') { in strexpand()
/freebsd/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_conf.l65 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 DStringToOffsetTable.h65 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/llvm/lib/AsmParser/
H A DLLLexer.cpp337 if (!isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexUIntID()
458 if (!IntEnd && !isdigit(static_cast<unsigned char>(*CurPtr))) in LexIdentifier()
1062 if (!isdigit(static_cast<unsigned char>(TokStart[0])) && in LexDigitOrNegative()
1063 !isdigit(static_cast<unsigned char>(CurPtr[0]))) { in LexDigitOrNegative()
1077 for (; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr) in LexDigitOrNegative()
1081 if (isdigit(TokStart[0]) && CurPtr[0] == ':') { in LexDigitOrNegative()
1114 if (isdigit(static_cast<unsigned char>(CurPtr[1])) || in LexDigitOrNegative()
1116 isdigit(static_cast<unsigned char>(CurPtr[2])))) { in LexDigitOrNegative()
1132 if (!isdigit(static_cast<unsigned char>(CurPtr[0]))) in LexPositive()
1151 if (isdigit(static_cast<unsigned char>(CurPtr[1])) || in LexPositive()
[all …]
/freebsd/usr.bin/pr/
H A Degetopt.c114 if (strchr(ostr, '#') && (isdigit(eoptopt) || in egetopt()
116 isdigit(*place)))) { in egetopt()
121 if (!isdigit(*p)) in egetopt()
/freebsd/contrib/ncurses/form/
H A Dfty_num.c51 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c)))
53 #define isDigit(c) isdigit(UChar(c))
248 if (!isdigit(UChar(*bp))) in Check_This_Field()
257 if (!isdigit(UChar(*bp))) in Check_This_Field()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcctype23 int isdigit(int c);
71 #ifdef isdigit
72 # undef isdigit
115 using ::isdigit _LIBCPP_USING_IF_EXISTS;
/freebsd/usr.bin/chpass/
H A Dutil.c96 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 Dcitrus_bcs_strtol.c48 #undef isdigit
49 #define isdigit(c) _bcs_isdigit(c) macro
H A Dcitrus_bcs_strtoul.c48 #undef isdigit
49 #define isdigit(c) _bcs_isdigit(c) macro
/freebsd/lib/libc/inet/
H A Dinet_net_pton.c96 } 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()

12345678910>>...26