Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Ddigest_md5.c79 static const char hextab[] = "0123456789abcdef"; variable
153 dst[j * 2] = hextab[p[j] >> 4]; in digest_nonce()
154 dst[j * 2 + 1] = hextab[p[j] & 0xf]; in digest_nonce()
296 hex_a1[j * 2] = hextab[hash_a1[j] >> 4]; in digest_calc_resp()
297 hex_a1[j * 2 + 1] = hextab[hash_a1[j] & 0xf]; in digest_calc_resp()
319 hex_a2[j * 2] = hextab[resp[j] >> 4]; in digest_calc_resp()
320 hex_a2[j * 2 + 1] = hextab[resp[j] & 0xf]; in digest_calc_resp()
327 outresp[j * 2] = hextab[resp[j] >> 4]; in digest_calc_resp()
328 outresp[j * 2 + 1] = hextab[resp[j] & 0xf]; in digest_calc_resp()
/illumos-gate/usr/src/uts/intel/io/acpica/
H A Dacpi_enum.c707 static const char hextab[] = "0123456789ABCDEF"; in eisa_to_str() local
719 *np++ = hextab[(id >> 20) & 0x0F]; in eisa_to_str()
720 *np++ = hextab[(id >> 16) & 0x0F]; in eisa_to_str()
721 *np++ = hextab[(id >> 28) & 0x0F]; in eisa_to_str()
722 *np++ = hextab[(id >> 24) & 0x0F]; in eisa_to_str()
H A Dosl.c1472 static const char hextab[] = "0123456789ABCDEF"; variable
1485 int j = sizeof (hextab); in hexdig()
1487 while (--j && (x != hextab[j])) { in hexdig()