HomeSort by: relevance | last modified time | path
    Searched defs:ISDIGIT (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/external/gpl3/gdb/dist/gdbsupport/
gdb-safe-ctype.h 40 #undef ISDIGIT
  /src/external/gpl3/gdb.old/dist/gdbsupport/
gdb-safe-ctype.h 40 #undef ISDIGIT
  /src/sys/dev/raidframe/
rf_utils.c 105 #define ISDIGIT(x) ( (x) >= '0' && (x) <= '9' )
107 #define ISHEX(x) ( ISDIGIT(x) || ISHEXCHAR(x) )
120 for (; ISDIGIT(*p); p++)
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
backupfile.c 56 /* ISDIGIT differs from isdigit, as follows:
61 only '0' through '9' are digits. Prefer ISDIGIT to isdigit unless
64 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
180 for (p = &backup[base_length + 2]; ISDIGIT (*p); ++p)
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
backupfile.c 56 /* ISDIGIT differs from isdigit, as follows:
61 only '0' through '9' are digits. Prefer ISDIGIT to isdigit unless
64 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
180 for (p = &backup[base_length + 2]; ISDIGIT (*p); ++p)
  /src/bin/sh/
syntax.h 64 #define ISDIGIT 01 /* a digit */
88 #define is_in_name(c) (sh_ctype(c) & (ISUPPER|ISLOWER|ISUNDER|ISDIGIT))
89 #define is_special(c) (sh_ctype(c) & (ISSPECL|ISDIGIT))
  /src/usr.bin/patch/
backupfile.c 38 #define ISDIGIT(c) (isascii ((unsigned char)c) && isdigit ((unsigned char)c))
154 if (!strncmp(base, backup, base_length) && ISDIGIT(backup[base_length])) {
155 for (p = &backup[base_length]; ISDIGIT(*p); ++p)
  /src/external/bsd/nvi/dist/common/
multibyte.h 16 #define ISDIGIT(c) ((c) >= '0' && (c) <= '9')
17 #define ISXDIGIT(c) (ISDIGIT(c) || \
20 #define ISALNUM(c) (ISALPHA(c) || ISDIGIT(c))
  /src/external/gpl2/gmake/dist/glob/
fnmatch.c 79 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
369 || (STREQ (str, "digit") && ISDIGIT ((unsigned char) *n))
  /src/external/lgpl3/mpfr/dist/src/
get_d128.c 48 #define ISDIGIT(c) ('0' <= c && c <= '9')
130 while (ISDIGIT (*s))
get_d64.c 30 #define ISDIGIT(c) ('0' <= c && c <= '9')
208 while (ISDIGIT (*s))
339 while (ISDIGIT (*s))
  /src/sys/arch/x68k/stand/loadbsd/
loadbsd.c 46 #define ISDIGIT(c) ((c) >= '0' && (c) <= '9')
49 do { var *= 10; var += *str++ - '0'; } while (ISDIGIT(*str))
99 if (!ISDIGIT(*p))
220 if (!ISDIGIT(*s))
229 if (!ISDIGIT(*s))
  /src/external/gpl2/grep/dist/src/
system.h 183 #define ISDIGIT(C) (IN_CTYPE_DOMAIN (C) && isdigit (C))
  /src/external/gpl2/xcvs/dist/diff/
system.h 227 #ifndef ISDIGIT
228 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
  /src/external/gpl2/xcvs/dist/lib/
fnmatch.c 110 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
  /src/external/gpl3/binutils/dist/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /src/external/gpl3/binutils.old/dist/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /src/external/gpl3/gcc/dist/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /src/external/gpl3/gcc.old/dist/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /src/external/gpl3/gdb/dist/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /src/external/gpl3/gdb/dist/readline/readline/
chardefs.h 83 # define isxdigit(c) (isdigit((unsigned char)(c)) || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' && (c) <= 'F'))
93 #define ISDIGIT(c) (IN_CTYPE_DOMAIN (c) && isdigit ((unsigned char)c))
  /src/external/gpl3/gdb.old/dist/include/
safe-ctype.h 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit)
129 #undef isdigit macro
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
  /src/external/gpl3/gdb.old/dist/readline/readline/
chardefs.h 76 # define isxdigit(c) (isdigit((unsigned char)(c)) || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' && (c) <= 'F'))
92 #define ISDIGIT(c) (IN_CTYPE_DOMAIN (c) && isdigit ((unsigned char)c))
  /src/external/gpl2/diffutils/dist/src/
system.h 275 /* ISDIGIT differs from isdigit, as follows:
280 Prefer ISDIGIT to isdigit unless it's important to use the locale's
282 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
  /src/external/gpl2/gmake/dist/
make.h 295 /* ISDIGIT offers the following features:
301 only '0' through '9' are digits. Prefer ISDIGIT to isdigit() unless
304 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)

Completed in 51 milliseconds

1 2