Searched refs:isalnum (Results 1 - 11 of 11) sorted by relevance

/u-boot/include/linux/
H A Dctype.h22 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) macro
/u-boot/include/
H A Dctype.h22 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) macro
/u-boot/scripts/basic/
H A Dfixdep.c245 if (p > start && (isalnum(p[-1]) || p[-1] == '_')) {
251 while (isalnum(*q) || *q == '_')
266 while (isalnum(*q) || *q == '_')
/u-boot/common/
H A Dcli_hush_modern.c208 #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
H A Dcli_hush.c2281 while(isalnum(*s) || *s=='_') ++s;
2846 while(ch=b_peek(input),isalnum(ch) || ch=='_') {
H A Dcli_hush_upstream.c5439 if (!isalnum(ch) && ch != '_') {
5480 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
5533 if (!isalnum(ch) && ch != '_') {
5544 if (!isalnum(ch) && ch != '_' && ch != '#') {
5697 if (isalnum(ch)) { /* it's $_name or $_123 */
/u-boot/lib/
H A Dtiny-printf.c279 while (isalnum(fmt[0]))
H A Dvsprintf.c651 while (isalnum(fmt[1]))
/u-boot/scripts/kconfig/
H A Dpreprocess.c559 return !(isalnum(c) || c == '_' || c == '-' || c == '.' || c == '/');
H A Dnconf.c1037 if (isalnum(c) || isgraph(c) || c == ' ') {
/u-boot/tools/
H A Dasn1_compiler.c418 while (q < nl && (isalnum(*q) || *q == '-' || *q == '_'))

Completed in 123 milliseconds