Home
last modified time | relevance | path

Searched refs:ishex (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/ipf/tools/
H A Dlexer.c31 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ macro
427 if (isbuilding == 0 && (ishex(c) || c == ':')) { in yylex()
443 } while ((ishex(c) || c == ':' || c == '.') && in yylex()
472 } while (ishex(n)); in yylex()
/illumos-gate/usr/src/lib/libshare/smb/
H A Dlibshare_smb.c219 boolean_t ishex = B_FALSE; in is_a_number() local
226 ishex = B_TRUE; in is_a_number()
232 isnum = (ishex) ? isxdigit(*number) : isdigit(*number); in is_a_number()