HomeSort by relevance Sort by last modified time
    Searched defs:IS_DIGIT (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiUiLib/
EfiUiLib.c 24 #define IS_DIGIT(Ch) (((Ch) >= L'0') && ((Ch) <= L'9'))
65 if (!IS_DIGIT (String[i])) {
  /external/libxml2/include/libxml/
parserInternals.h 156 * IS_DIGIT:
163 #define IS_DIGIT(c) xmlIsDigitQ(c)
169 * Behaves like IS_DIGIT but with a single byte argument
  /external/libxml2/
uri.c 77 #ifdef IS_DIGIT
78 #undef IS_DIGIT
83 #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9'))
89 #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
    [all...]
  /external/valgrind/coregrind/m_demangle/
cp-demangle.c 216 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
cp-demangle.c 201 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
    [all...]
  /external/pcre/dist2/src/
pcre2_compile.c 188 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
    [all...]

Completed in 428 milliseconds