Searched refs:hexdigit (Results 1 – 4 of 4) sorted by relevance
448 static char hexdigit[] = "0123456789abcdef"; in ext2fs_read() local454 printf ("%c", hexdigit[*i >> 4]); in ext2fs_read()455 printf ("%c", hexdigit[*i % 16]); in ext2fs_read()
967 static char hexdigit[] = "0123456789ABCDEF"; in solaris_config_file() local988 *c++ = hexdigit[b >> 4]; in solaris_config_file()989 *c++ = hexdigit[b & 0xf]; in solaris_config_file()
187 static int hexdigit(char);2459 while (*ptr != '\0' && (i = hexdigit(*ptr)) >= 0) { in get_chunk_header()2898 hexdigit(char ch) in hexdigit() function
1774 hexdigit(val) in hexdigit() function1789 *hex++ = hexdigit(*bin >> 4);1790 *hex++ = hexdigit(*bin++ & 0xf);