Searched refs:hextab (Results 1 – 3 of 3) sorted by relevance
81 static const char hextab[] = "0123456789abcdef"; variable155 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()
648 static const char hextab[] = "0123456789ABCDEF"; in eisa_to_str() local660 *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()
1404 static const char hextab[] = "0123456789ABCDEF"; variable1417 int j = sizeof (hextab); in hexdig()1419 while (--j && (x != hextab[j])) { in hexdig()