Home
last modified time | relevance | path

Searched refs:hexdigit (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/grub/grub-0.97/stage2/
H A Dfsys_ext2fs.c448 static char hexdigit[] = "0123456789abcdef"; in ext2fs_read() local
454 printf ("%c", hexdigit[*i >> 4]); in ext2fs_read()
455 printf ("%c", hexdigit[*i % 16]); in ext2fs_read()
H A Dbuiltins.c967 static char hexdigit[] = "0123456789ABCDEF"; in solaris_config_file() local
988 *c++ = hexdigit[b >> 4]; in solaris_config_file()
989 *c++ = hexdigit[b & 0xf]; in solaris_config_file()
/titanic_50/usr/src/common/net/wanboot/
H A Dboot_http.c187 static int hexdigit(char);
2459 while (*ptr != '\0' && (i = hexdigit(*ptr)) >= 0) { in get_chunk_header()
2898 hexdigit(char ch) in hexdigit() function
/titanic_50/usr/src/cmd/keyserv/
H A Dsetkey.c1774 hexdigit(val) in hexdigit() function
1789 *hex++ = hexdigit(*bin >> 4);
1790 *hex++ = hexdigit(*bin++ & 0xf);