Home
last modified time | relevance | path

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

/illumos-gate/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.c970 static char hexdigit[] = "0123456789ABCDEF"; in solaris_config_file() local
991 *c++ = hexdigit[b >> 4]; in solaris_config_file()
992 *c++ = hexdigit[b & 0xf]; in solaris_config_file()
/illumos-gate/usr/src/cmd/keyserv/
H A Dsetkey.c1772 hexdigit(val) in hexdigit() function
1787 *hex++ = hexdigit(*bin >> 4);
1788 *hex++ = hexdigit(*bin++ & 0xf);