HomeSort by: relevance | last modified time | path
    Searched refs:isdigit (Results 1 - 25 of 933) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/compiler_rt/dist/lib/interception/tests/
interception_linux_test.cc 15 // Do not declare isdigit in ctype.h.
28 DECLARE_REAL(int, isdigit, int);
30 INTERCEPTOR(int, isdigit, int d) {
49 ASSERT_TRUE(INTERCEPT_FUNCTION(isdigit));
53 EXPECT_NE(0, isdigit('1'));
55 EXPECT_EQ(0, isdigit('a'));
60 EXPECT_NE(0, REAL(isdigit)('1'));
61 EXPECT_EQ(0, REAL(isdigit)('a'));
  /src/external/cddl/osnet/dist/common/util/
strtolctype.h 49 #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'))
  /src/external/apache2/mDNSResponder/dist/Clients/
ClientCommon.c 56 if (isdigit(cstr[-1]) && isdigit(cstr[0]) && isdigit(cstr[1]))
  /src/lib/libc/locale/
fix_grouping.c 56 /* don't use libc's isdigit, it owes locale. */
57 #define isdigit(c) (c >= '0' && c <= '9') macro
88 if (!isdigit((unsigned char)*src)) {
95 if (isdigit((unsigned char)*(src+1))) {
  /src/lib/libc/citrus/
citrus_bcs_strtol.c 52 #undef isdigit macro
53 #define isdigit(c) _bcs_isdigit(c) macro
citrus_bcs_strtoul.c 57 #undef isdigit macro
58 #define isdigit(c) _bcs_isdigit(c) macro
  /src/external/bsd/elftosb/dist/common/
HexValues.cpp 12 return isdigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
  /src/external/bsd/ntp/dist/libntp/
atouint.c 33 if (!isdigit((unsigned char)*cp))
octtoint.c 29 if (!isdigit((unsigned char)*cp) || *cp == '8' || *cp == '9')
atoint.c 40 if (!isdigit((unsigned char)*cp))
  /src/external/gpl2/gettext/dist/gettext-tools/src/
format-php.c 82 <ctype.h> isdigit must be an 'unsigned char'.) */
83 #undef isdigit macro
84 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
125 if (isdigit (*format))
135 while (isdigit (*f));
170 if (isdigit (*format))
174 while (isdigit (*format));
182 if (isdigit (*format))
186 while (isdigit (*format));
format-boost.c 102 <ctype.h> isdigit must be an 'unsigned char'.) */
103 #undef isdigit macro
104 #define isdigit(c) ((unsigned int) ((c) - '0') < 10) macro
150 if (isdigit (*format) && *format != '0')
160 while (isdigit (*f));
200 if (isdigit (*format))
210 while (isdigit (*f));
270 else if (isdigit (*format))
272 do format++; while (isdigit (*format));
286 if (isdigit (*format)
    [all...]
  /src/sys/arch/bebox/stand/boot/
devopen.c 79 !isdigit(*p++) ||
92 !isdigit(*p++) ||
94 !isdigit(*p++))
108 !isdigit(*p++) ||
109 !isdigit(*p++) ||
110 !isdigit(*p++) ||
112 !isdigit(*p++) ||
114 !isdigit(*p++))
  /src/external/bsd/flex/dist/examples/manual/
string1.lex 12 #define hextoint(x) (isdigit((x)) ? (x) - '0' : ((x) - 'A') + 10)
  /src/external/lgpl3/gmp/dist/cxx/
isfuns.cc 88 while (isdigit(c))
97 while (isdigit(c) && c != '8' && c != '9')
  /src/sys/arch/ia64/stand/common/
interp_backslash.c 28 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
  /src/sys/lib/libsa/
atoi.c 45 for (; isdigit(*c); c++)
  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 20 int isdigit(int c);
46 #undef isdigit macro
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
StringToOffsetTable.h 65 if (isdigit(AggregateString[i + 1])) {
66 assert(isdigit(AggregateString[i + 2]) &&
67 isdigit(AggregateString[i + 3]) &&
  /src/lib/libform/
type_numeric.c 135 while(isdigit((unsigned char)buf[cur]))
142 while (buf[cur] && isdigit((unsigned char)buf[cur]))
160 if (!isdigit((unsigned char)buf[cur]))
164 while(isdigit((unsigned char)buf[cur]))
200 return ((isdigit(c) || (c == '-') || (c == '+')
  /src/usr.bin/pr/
egetopt.c 112 if (strchr(ostr, '#') && (isdigit(eoptopt) ||
114 isdigit((unsigned char)*place)))) {
119 if (!isdigit((unsigned char)*p))
  /src/lib/libterminfo/
tputs.c 59 while (isdigit(*(const unsigned char *)*str))
64 if (isdigit(*(const unsigned char *)*str))
66 while (isdigit(*(const unsigned char *)*str))
110 !(isdigit((const unsigned char)str[2]) || str[2] == '.') ||
  /src/external/gpl2/rcs/dist/src/
partime.c 45 #undef isdigit macro
46 #define isdigit(c) (((unsigned)(c)-'0') <= 9) /* faster than stock */ macro
340 if ((s[0]==',' || s[0]=='.') && isdigit ((unsigned char) s[1])) {
343 while (isdigit ((unsigned char) *++s))
431 if (isdigit ((unsigned char) *s)) {
434 if (*s==':' && s[-3]==':' && isdigit ((unsigned char) s[1])) {
439 if (isdigit ((unsigned char) *s))
460 if (isdigit ((unsigned char) *s))
515 isdigit ((unsigned char) s[0]) &&
516 isdigit ((unsigned char) s[1]
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
ctype.h 38 using std::isdigit;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
ctype.h 38 using std::isdigit;

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>