Searched refs:isdigit (Results 1 - 25 of 618) sorted by path

1234567891011>>

/freebsd-10.3-release/bin/date/
H A Ddate.c227 if (isdigit(*t))
/freebsd-10.3-release/bin/ed/
H A Dmain.c313 if (isdigit((unsigned char)*ibufp)) {
/freebsd-10.3-release/bin/expr/
H A Dexpr.y221 while (isdigit((unsigned char)*s))
/freebsd-10.3-release/bin/kill/
H A Dkill.c84 if (!isdigit(**argv))
117 } else if (isdigit(**argv)) {
/freebsd-10.3-release/bin/ps/
H A Dps.c93 * isdigit takes an `int', but expects values in the range of unsigned char.
96 #define isdigitch(Anychar) isdigit((u_char)(Anychar))
/freebsd-10.3-release/bin/rcp/
H A Drcp.c594 for (size = 0; isdigit(*cp);)
H A Dutil.c94 if (!isalpha(c) && !isdigit(c) && c != '_' && c != '-' && c != '.')
/freebsd-10.3-release/bin/stty/
H A Dstty.c130 if (isdigit(**argv)) {
/freebsd-10.3-release/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-10.3-release/cddl/contrib/opensolaris/cmd/lockstat/
H A Dlockstat.c1126 if (!isdigit(optarg[0]))
1136 if (!isdigit(optarg[0]))
1142 if (!isdigit(optarg[0]))
1159 if (!isdigit(optarg[0]))
1269 if (!isdigit(optarg[0]))
/freebsd-10.3-release/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c2566 if (argc > 0 && isdigit(argv[argc - 1][0])) {
2596 if (argc > 0 && isdigit(argv[argc - 1][0])) {
/freebsd-10.3-release/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-10.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cc.c1750 if (isdigit(pdp->dtpd_provider[strlen(pdp->dtpd_provider) - 1]) &&
H A Ddt_parser.c2576 if (isdigit(name[len - 1])) {
H A Ddt_pid.c453 !isdigit(pdp->dtpd_mod[2]))
679 if (!isdigit(*c))
H A Ddt_printf.c891 for (n = 0; isdigit(c); c = *++p)
H A Ddt_subr.c110 if (isdigit(v[1])) {
395 if (isdigit(c))
/freebsd-10.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_dataset.c2787 } else if (!isdigit(*cp)) {
H A Dlibzfs_import.c1019 if ((ptr = strrchr(diskname, 's')) == NULL || !isdigit(ptr[1]))
H A Dlibzfs_pool.c1881 #define CTD_CHECK(str) (str && str[0] == 'c' && isdigit(str[1]))
/freebsd-10.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dst_parse.c539 } else if (isdigit(*cp)) { /* gcc style */
804 for (fmt = 0, i = 0; isdigit(*(cp + i)); i++)
/freebsd-10.3-release/contrib/apr-util/crypto/
H A Duuid.c65 if (isdigit(*s)) {
78 if (isdigit(*s)) {
/freebsd-10.3-release/contrib/apr/include/
H A Dapr_lib.h208 /** @see isdigit */
209 #define apr_isdigit(c) (isdigit(((unsigned char)(c))))
/freebsd-10.3-release/contrib/atf/atf-c++/detail/
H A Dtext.cpp147 if (!std::isdigit(unit))
/freebsd-10.3-release/contrib/binutils/libiberty/
H A Dregex.c231 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))

Completed in 499 milliseconds

1234567891011>>