Searched refs:ISALNUM (Results 1 - 25 of 124) sorted by relevance

12345

/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20000818-1.c8 static int ISALNUM (int ch);
29 if (ISALNUM (ch))
38 if (ISALNUM (ch))
51 static int ISALNUM (int ch) function
/haiku-buildtools/legacy/gcc/gcc/
H A Dgen-protos.c99 if (!ISALNUM ((unsigned char)*ptr))
108 while (ISALNUM ((unsigned char)*ptr) || *ptr == '_') --ptr;
H A Dscan.c74 if (c == EOF || !(ISALNUM(c) || c == '_'))
H A Dc-lex.c1314 while (ISALNUM (c) || c == '_' || c == '$' || c == '@')
1424 if (!ISALNUM (next_c) && next_c != '.')
1481 || (ISALNUM (c) && c != 'l' && c != 'L'
1879 if (ISALNUM (c) || c == '.' || c == '_' || c == '$'
H A Dsystem.h108 #define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c)) macro
/haiku-buildtools/legacy/gcc/gcc/f/
H A Dsrc.h92 ((ISALNUM ((c))) || (! (1 || ffe_is_90 ()) && ((c) == '_')))
/haiku-buildtools/gcc/gcc/config/avr/
H A Ddriver-avr.c125 if (!ISALNUM (*s)
/haiku-buildtools/binutils/cpu/
H A Dxstormy16.opc72 while (ISALNUM (*++s))
/haiku-buildtools/gcc/gcc/java/
H A Dmangle_name.c277 if ((ISALNUM (ch) && ch != 'U') || ch == '$')
335 if ((ISALNUM (ch) && ch != 'U') || ch == '$')
/haiku-buildtools/legacy/binutils/binutils/
H A Dcxxfilt.c261 while (c != EOF && (ISALNUM (c) || strchr (valid_symbols, c)))
/haiku-buildtools/legacy/binutils/include/
H A Dsafe-ctype.h94 #define ISALNUM(c) _sch_test(c, _sch_isalnum) macro
/haiku-buildtools/binutils/binutils/
H A Dcxxfilt.c265 while (c != EOF && (ISALNUM (c) || strchr (valid_symbols, c)))
/haiku-buildtools/gcc/include/
H A Dsafe-ctype.h90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) macro
/haiku-buildtools/gcc/gcc/
H A Dgodump.c214 while (ISALNUM (*p) || *p == '_')
H A Dgenpreds.c206 if (q != p && (ISALNUM (q[-1]) || q[-1] == '_'))
209 if (ISALNUM (q[0]) || q[0] == '_')
778 if (!ISALNUM (*p))
/haiku-buildtools/binutils/include/
H A Dsafe-ctype.h90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) macro
/haiku-buildtools/legacy/binutils/bfd/
H A Dbinary.c152 if (! ISALNUM (*p))
H A Dppcboot.c286 if (! ISALNUM (*p))
/haiku-buildtools/legacy/binutils/opcodes/
H A Dcgen-asm.c221 && (ISALNUM (*p)
/haiku-buildtools/binutils/bfd/
H A Dbinary.c140 if (! ISALNUM (*p))
/haiku-buildtools/binutils/opcodes/
H A Dcgen-asm.c220 && (ISALNUM (*p)
/haiku-buildtools/binutils/gas/config/
H A Dtc-visium.c911 while ((ISALNUM (*s)) && cnt < 10)
948 while ((ISALNUM (*s)) && cnt < 10)
985 while ((ISALNUM (*s)) && cnt < 10)
1064 while ((ISALNUM (*str) || *str == '.' || *str == '_') && cnt < 10)
/haiku-buildtools/binutils/gold/
H A Dbinary.cc162 if (!ISALNUM(*p))
/haiku-buildtools/legacy/binutils/gas/config/
H A Dtc-arc.c1170 if (!strncmp (p, ext_oper->operand.name, l) && !ISALNUM (*(p + l)))
1182 if (!strncmp (p, arc_reg_names[i].name, l) && !ISALNUM (*(p + l)))
1613 for (t = s; *t && ISALNUM (*t); ++t)
/haiku-buildtools/gcc/fixincludes/
H A Dfixfixes.c617 if (! ISALNUM( ch )) {

Completed in 291 milliseconds

12345