Searched defs:hextab (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/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];
156 dst[j * 2 + 1] = hextab[p[j] & 0xf];
298 hex_a1[j * 2] = hextab[hash_a1[j] >> 4];
299 hex_a1[j * 2 + 1] = hextab[hash_a1[j] & 0xf];
321 hex_a2[j * 2] = hextab[resp[j] >> 4];
322 hex_a2[j * 2 + 1] = hextab[resp[j] & 0xf];
329 outresp[j * 2] = hextab[resp[j] >> 4];
330 outresp[j * 2 + 1] = hextab[resp[j] & 0xf];
/illumos-gate/usr/src/uts/intel/io/acpica/
H A Dacpi_enum.c648 static const char hextab[] = "0123456789ABCDEF"; local
660 *np++ = hextab[(id >> 20) & 0x0F];
661 *np++ = hextab[(id >> 16) & 0x0F];
662 *np++ = hextab[(id >> 28) & 0x0F];
663 *np++ = hextab[(id >> 24) & 0x0F];
H A Dosl.c1397 static const char hextab[] = "0123456789ABCDEF"; variable
1410 int j = sizeof (hextab);
1412 while (--j && (x != hextab[j])) {

Completed in 52 milliseconds