Searched refs:hex_digits (Results 1 – 6 of 6) sorted by relevance
172 static char hex_digits[] = "0123456789ABCDEF"; variable183 *charaddr++ = hex_digits[(i>>4) & 0xf];184 *charaddr++ = hex_digits[i & 0xf];
62 static const char hex_digits[] = "0123456789ABCDEF"; in mem_get_spd_serid() local74 *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()
120 static const char hex_digits[] = "0123456789ABCDEF"; in mem_fmri_uriescape() local148 *q++ = hex_digits[((uchar_t)c & 0xf0) >> 4]; in mem_fmri_uriescape()149 *q++ = hex_digits[(uchar_t)c & 0xf]; in mem_fmri_uriescape()
143 static const char hex_digits[] = "0123456789ABCDEF"; in mem_fmri_uriescape() local171 *q++ = hex_digits[((uchar_t)c & 0xf0) >> 4]; in mem_fmri_uriescape()172 *q++ = hex_digits[(uchar_t)c & 0xf]; in mem_fmri_uriescape()
89 static const char hex_digits[] = "0123456789ABCDEF"; in fmd_fmri_uriescape() local117 *q++ = hex_digits[((uchar_t)c & 0xf0) >> 4]; in fmd_fmri_uriescape()118 *q++ = hex_digits[(uchar_t)c & 0xf]; in fmd_fmri_uriescape()
846 static char hex_digits[] = "01234567890abcdefABCDEF"; in get_value64() local861 digit_string = hex_digits; in get_value64()864 digit_string = hex_digits; in get_value64()