Home
last modified time | relevance | path

Searched refs:isalnum (Results 1 – 9 of 9) sorted by relevance

/rk3399_rockchip-uboot/include/linux/
H A Dctype.h22 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) macro
/rk3399_rockchip-uboot/scripts/
H A Ddocproc.c220 while (isalnum(*p) || *p == '_') in find_export_symbols()
232 while (isalnum(*e) || *e == '_') in find_export_symbols()
/rk3399_rockchip-uboot/scripts/basic/
H A Dfixdep.c241 if (!(isalnum(*q) || *q == '_')) in parse_config_file()
/rk3399_rockchip-uboot/lib/
H A Dtiny-printf.c298 while (isalnum(fmt[0])) in _vprintf()
H A Dvsprintf.c598 while (isalnum(fmt[1])) in vsnprintf_internal()
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dconfdata.c97 while (isalnum(*src) || *src == '_') in conf_expand_value()
H A Dnconf.c1037 if (isalnum(c) || isgraph(c) || c == ' ') { in do_match()
H A Dsymbol.c924 while (isalnum(*src) || *src == '_') in sym_expand_string_value()
/rk3399_rockchip-uboot/common/
H A Dcli_hush.c2288 while(isalnum(*s) || *s=='_') ++s;
2853 while(ch=b_peek(input),isalnum(ch) || ch=='_') {