Searched defs:isxdigit (Results 1 – 9 of 9) sorted by relevance
52 int (isxdigit)(int); variable
56 #define isxdigit(ch) (isdigit(ch) || ((ch) >= 'a' && (ch) <= 'f') || \ macro
79 isxdigit(int c) in isxdigit() function
66 #define isxdigit(c) ((__ismask(c)&(_D|_X)) != 0) macro
177 isxdigit(int c) in isxdigit() function
178 #define isxdigit(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_XD)) macro
97 #define isxdigit(c) __sbistype((c), _CTYPE_X) macro
247 static __inline int isxdigit(int c) in isxdigit() function