Home
last modified time | relevance | path

Searched refs:hex_digits (Results 1 – 6 of 6) sorted by relevance

/titanic_41/usr/src/cmd/listen/
H A Dnlsaddr.c172 static char hex_digits[] = "0123456789ABCDEF"; variable
183 *charaddr++ = hex_digits[(i>>4) & 0xf];
184 *charaddr++ = hex_digits[i & 0xf];
/titanic_41/usr/src/cmd/fm/schemes/mem/
H A Dmem_read.c62 static const char hex_digits[] = "0123456789ABCDEF"; in mem_get_spd_serid() local
74 *c++ = hex_digits[spd->asmb_serial_no[i] >> 4]; in mem_get_spd_serid()
75 *c++ = hex_digits[spd->asmb_serial_no[i] & 0xf]; in mem_get_spd_serid()
/titanic_41/usr/src/lib/fm/topo/libtopo/common/
H A Dlegacy_hc.c120 static const char hex_digits[] = "0123456789ABCDEF"; in mem_fmri_uriescape() local
148 *q++ = hex_digits[((uchar_t)c & 0xf0) >> 4]; in mem_fmri_uriescape()
149 *q++ = hex_digits[(uchar_t)c & 0xf]; in mem_fmri_uriescape()
H A Dmem.c143 static const char hex_digits[] = "0123456789ABCDEF"; in mem_fmri_uriescape() local
171 *q++ = hex_digits[((uchar_t)c & 0xf0) >> 4]; in mem_fmri_uriescape()
172 *q++ = hex_digits[(uchar_t)c & 0xf]; in mem_fmri_uriescape()
/titanic_41/usr/src/cmd/fm/fmd/common/
H A Dfmd_fmri.c89 static const char hex_digits[] = "0123456789ABCDEF"; in fmd_fmri_uriescape() local
117 *q++ = hex_digits[((uchar_t)c & 0xf0) >> 4]; in fmd_fmri_uriescape()
118 *q++ = hex_digits[(uchar_t)c & 0xf]; in fmd_fmri_uriescape()
/titanic_41/usr/src/cmd/pcitool/
H A Dpcitool_ui.c846 static char hex_digits[] = "01234567890abcdefABCDEF"; in get_value64() local
861 digit_string = hex_digits; in get_value64()
864 digit_string = hex_digits; in get_value64()