Home
last modified time | relevance | path

Searched defs:ISDIGIT (Results 1 – 23 of 23) sorted by relevance

/netbsd/src/sys/dev/raidframe/
Drf_utils.c105 #define ISDIGIT(x) ( (x) >= '0' && (x) <= '9' ) macro
/netbsd/src/bin/sh/
Dsyntax.h62 #define ISDIGIT 01 /* a digit */ macro
/netbsd/src/usr.bin/patch/
Dbackupfile.c38 #define ISDIGIT(c) (isascii ((unsigned char)c) && isdigit ((unsigned char)c)) macro
/netbsd/src/external/lgpl3/mpfr/dist/src/
Dget_d128.c48 #define ISDIGIT(c) ('0' <= c && c <= '9') macro
Dget_d64.c30 #define ISDIGIT(c) ('0' <= c && c <= '9') macro
/netbsd/src/sys/arch/x68k/stand/loadbsd/
Dloadbsd.c46 #define ISDIGIT(c) ((c) >= '0' && (c) <= '9') macro
/netbsd/src/external/bsd/nvi/dist/common/
Dmultibyte.h16 #define ISDIGIT(c) ((c) >= '0' && (c) <= '9') macro
/netbsd/src/external/gpl3/binutils/dist/include/
Dsafe-ctype.h93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/netbsd/src/external/gpl3/gdb/dist/include/
Dsafe-ctype.h93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/netbsd/src/external/gpl3/gcc/dist/include/
Dsafe-ctype.h93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/netbsd/src/external/gpl2/xcvs/dist/diff/
Dsystem.h228 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) macro
/netbsd/src/external/bsd/pcc/dist/pcc/cc/cpp/
Dcpp.h97 #define ISDIGIT(x) (spechr[x] & C_DIGIT) macro
/netbsd/src/external/gpl2/xcvs/dist/lib/
Dfnmatch.c110 # define ISDIGIT(c) (ISASCII (c) && isdigit (c)) macro
Dgetdate.y88 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) macro
Dstrftime.c267 #define ISDIGIT(Ch) ((unsigned int) (Ch) - L_('0') <= 9) macro
Dgetdate.c162 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) macro
/netbsd/src/libexec/makewhatis/
Dmakewhatis.c121 #define ISDIGIT(c) isdigit((unsigned char)(c)) macro
/netbsd/src/external/bsd/ntp/dist/libntp/
Dsnprintf.c521 #define ISDIGIT(ch) ('0' <= (unsigned char)ch && (unsigned char)ch <= '9') macro
/netbsd/src/sys/external/bsd/ipf/netinet/
Dip_compat.h705 #define ISDIGIT(x) isdigit((u_char)(x)) macro
/netbsd/src/external/gpl3/gdb/dist/libiberty/
Dregex.c235 # define ISDIGIT(c) (ISASCII (c) && isdigit (c)) macro
/netbsd/src/external/gpl3/binutils/dist/libiberty/
Dregex.c235 # define ISDIGIT(c) (ISASCII (c) && isdigit (c)) macro
/netbsd/src/external/gpl3/gcc/dist/libiberty/
Dregex.c235 # define ISDIGIT(c) (ISASCII (c) && isdigit (c)) macro
/netbsd/src/external/ibm-public/postfix/dist/src/util/
Dsys_defs.h1778 #define ISDIGIT(c) (ISASCII(c) && isdigit((unsigned char)(c))) macro