Searched refs:lisalnum (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/common/util/
H A Dstrtol.c98 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) {
118 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) {
138 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr))
H A Dstrtoll.c94 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) {
113 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) {
133 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr))
H A Dstrtoul.c93 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) {
107 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) {
126 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr))
H A Dstrtoull.c93 if (!lisalnum(c) || (xx = DIGIT(c)) >= base) {
107 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; ) {
126 for (c = *++ustr; lisalnum(c) && (xx = DIGIT(c)) < base; (c = *++ustr))
H A Dstrtolctype.h86 #define lisalnum(x) \ macro
/illumos-gate/usr/src/lib/libsocket/inet/
H A Dether_addr.c179 #define lisalnum(x) (isdigit(x) || \ macro
202 while (p < limit && lisalnum(start[j])) {
/illumos-gate/usr/src/uts/common/dtrace/
H A Ddtrace.c1064 for (; pos < end && c != '\0' && lisalnum(c) && (x = DIGIT(c)) < base;

Completed in 93 milliseconds