Searched refs:ishex (Results 1 – 2 of 2) sorted by relevance
31 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ macro426 if (isbuilding == 0 && (ishex(c) || c == ':')) { in yylex()442 } while ((ishex(c) || c == ':' || c == '.') && in yylex()471 } while (ishex(n)); in yylex()
211 boolean_t ishex = B_FALSE; in is_a_number() local218 ishex = B_TRUE; in is_a_number()224 isnum = (ishex) ? isxdigit(*number) : isdigit(*number); in is_a_number()