Searched refs:isdigit (Results 1 - 25 of 615) sorted by relevance

1234567891011>>

/freebsd-current/lib/libc/string/
H A Dstrverscmp.c28 if (!isdigit(*u1) || !isdigit(*u2)) {
52 if (!isdigit(*u1) && isdigit(*u2))
54 if (!isdigit(*u2) && isdigit(*u1))
67 for (; isdigit(*u1); u1++)
69 for (; isdigit(*u2); u2++)
85 for (; isdigit(*u1) && isdigit(*u
[all...]
/freebsd-current/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-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
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-current/usr.bin/localedef/bootstrap/
H A Dctype.h51 int isdigit(int);
/freebsd-current/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-current/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-current/lib/libc/iconv/
H A Dcitrus_bcs_strtoul.c48 #undef isdigit macro
49 #define isdigit(c) _bcs_isdigit(c) macro
H A Dcitrus_bcs_strtol.c48 #undef isdigit macro
49 #define isdigit(c) _bcs_isdigit(c) macro
/freebsd-current/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-current/lib/libc/locale/
H A Dfix_grouping.c64 if (!isdigit((unsigned char)*src)) {
71 if (isdigit((unsigned char)*(src+1))) {
/freebsd-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcctype.inc15 using ::isdigit;
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dcharclass.h20 { "digit", isdigit },
/freebsd-current/contrib/ntp/libntp/
H A Docttoint.c27 if (!isdigit((unsigned char)*cp) || *cp == '8' || *cp == '9')
H A Datouint.c31 if (!isdigit((unsigned char)*cp))
H A Datoint.c38 if (!isdigit((unsigned char)*cp))
H A Datolfp.c66 if (*cp != '.' && !isdigit((unsigned char)*cp))
87 while (isdigit((unsigned char)*cp))
/freebsd-current/stand/common/
H A Dinterp_backslash.c21 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/freebsd-current/contrib/ncurses/form/
H A Dfty_ipv4.c58 if (isdigit(UChar(*bp))) /* Must start with digit */
86 return ((isdigit(UChar(c)) || (c == '.')) ? TRUE : FALSE);
/freebsd-current/sys/sys/
H A Dctype.h73 isdigit(int c) function
81 return (isdigit(c) || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'));
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Dctype.h20 int isdigit(int c);
48 # undef isdigit macro
/freebsd-current/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h65 if (isdigit(AggregateString[i + 1])) {
66 assert(isdigit(AggregateString[i + 2]) &&
67 isdigit(AggregateString[i + 3]) &&
/freebsd-current/usr.bin/pr/
H A Degetopt.c114 if (strchr(ostr, '#') && (isdigit(eoptopt) ||
116 isdigit(*place)))) {
121 if (!isdigit(*p))
/freebsd-current/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dctype.h34 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
/freebsd-current/contrib/ldns/compat/
H A Dinet_aton.c104 * 0x=hex, 0=octal, isdigit=decimal.
106 if (!isdigit((int) c))
117 if (isascii((int) c) && isdigit((int) c)) {
/freebsd-current/contrib/unbound/compat/
H A Dinet_aton.c104 * 0x=hex, 0=octal, isdigit=decimal.
106 if (!isdigit((unsigned char)c))
117 if (isascii((unsigned char)c) && isdigit((unsigned char)c)) {

Completed in 294 milliseconds

1234567891011>>