Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/cddl/compat/opensolaris/kern/
Dopensolaris_string.c33 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
71 if (!IS_ALPHA(c) && !IS_DIGIT(c) && c != '_') in strident_canon()
/freebsd-12-stable/cddl/contrib/opensolaris/lib/libuutil/common/
Duu_strtoint.c36 #define IS_DIGIT(x) ((x) >= '0' && (x) <= '9') macro
96 if (IS_DIGIT(c)) in strtoint()
109 if (IS_DIGIT(c)) in strtoint()
Duu_ident.c51 #define IS_DIGIT(c) \ macro
67 if (IS_ALPHA(c) || IS_DIGIT(c) || c == '-' || c == '_' || in is_valid_ident()
/freebsd-12-stable/contrib/less/
Dless.h135 #undef IS_DIGIT
163 #define IS_DIGIT(c) isdigit((unsigned char)(c)) macro
165 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
Dtags.c751 if (!IS_DIGIT(*p))
758 if (!IS_DIGIT(*p))
/freebsd-12-stable/contrib/gcclibs/libiberty/
Dcp-demangle.c168 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
1177 if (IS_DIGIT (peek) in d_prefix()
1226 if (IS_DIGIT (peek)) in d_unqualified_name()
1293 if (! IS_DIGIT (peek)) in d_number()
1418 if (c1 == 'v' && IS_DIGIT (c2)) in d_operator_name()
1823 if (IS_DIGIT (peek_next) in cplus_demangle_type()
2049 else if (IS_DIGIT (peek)) in d_array_type()
2059 while (IS_DIGIT (peek)); in d_array_type()
2514 if (c == '_' || IS_DIGIT (c) || IS_UPPER (c)) in d_substitution()
2523 if (IS_DIGIT (c)) in d_substitution()
[all …]
DChangeLog3405 (IS_DIGIT): New macro.
3406 (IS_ALPHA): Likewise. Use IS_DIGIT and IS_ALPHA throughout
/freebsd-12-stable/contrib/binutils/libiberty/
Dcp-demangle.c200 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') macro
1223 if (IS_DIGIT (peek) in d_prefix()
1272 if (IS_DIGIT (peek)) in d_unqualified_name()
1339 if (! IS_DIGIT (peek)) in d_number()
1464 if (c1 == 'v' && IS_DIGIT (c2)) in d_operator_name()
1869 if (IS_DIGIT (peek_next) in cplus_demangle_type()
2095 else if (IS_DIGIT (peek)) in d_array_type()
2105 while (IS_DIGIT (peek)); in d_array_type()
2560 if (c == '_' || IS_DIGIT (c) || IS_UPPER (c)) in d_substitution()
2569 if (IS_DIGIT (c)) in d_substitution()
[all …]
DChangeLog3603 (IS_DIGIT): New macro.
3604 (IS_ALPHA): Likewise. Use IS_DIGIT and IS_ALPHA throughout