Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libldap5/sources/ldap/common/
H A Ddigest_md5.c81 static const char hextab[] = "0123456789abcdef"; variable
155 dst[j * 2] = hextab[p[j] >> 4]; in digest_nonce()
156 dst[j * 2 + 1] = hextab[p[j] & 0xf]; in digest_nonce()
298 hex_a1[j * 2] = hextab[hash_a1[j] >> 4]; in digest_calc_resp()
299 hex_a1[j * 2 + 1] = hextab[hash_a1[j] & 0xf]; in digest_calc_resp()
321 hex_a2[j * 2] = hextab[resp[j] >> 4]; in digest_calc_resp()
322 hex_a2[j * 2 + 1] = hextab[resp[j] & 0xf]; in digest_calc_resp()
329 outresp[j * 2] = hextab[resp[j] >> 4]; in digest_calc_resp()
330 outresp[j * 2 + 1] = hextab[resp[j] & 0xf]; in digest_calc_resp()
/titanic_41/usr/src/uts/intel/io/acpica/
H A Dacpi_enum.c648 static const char hextab[] = "0123456789ABCDEF"; in eisa_to_str() local
660 *np++ = hextab[(id >> 20) & 0x0F]; in eisa_to_str()
661 *np++ = hextab[(id >> 16) & 0x0F]; in eisa_to_str()
662 *np++ = hextab[(id >> 28) & 0x0F]; in eisa_to_str()
663 *np++ = hextab[(id >> 24) & 0x0F]; in eisa_to_str()
H A Dosl.c1404 static const char hextab[] = "0123456789ABCDEF"; variable
1417 int j = sizeof (hextab); in hexdig()
1419 while (--j && (x != hextab[j])) { in hexdig()