Searched defs:hexdigits (Results 1 - 4 of 4) sorted by relevance

/bind-9.11.3/lib/dns/
H A Dopenssldh_link.c695 static const char hexdigits[] = "0123456789abcdef"; local
705 s = strchr(hexdigits, tolower((unsigned char)str[i]));
707 high = (unsigned int)(s - hexdigits);
709 s = strchr(hexdigits, tolower((unsigned char)str[i + 1]));
711 low = (unsigned int)(s - hexdigits);
H A Dtkey.c770 static char hexdigits[16] = { local
787 randomtext[j++] = hexdigits[val >> 4];
788 randomtext[j++] = hexdigits[val & 0xF];
H A Drdata.c573 static const char hexdigits[] = "0123456789abcdef"; variable
1861 if ((s = strchr(hexdigits, c)) == NULL)
1863 return (int)(s - hexdigits);
/bind-9.11.3/contrib/sdb/ldap/
H A Dldapdb.c412 static const char hexdigits[] = "0123456789abcdef"; local
419 if ((p = strchr(hexdigits, tolower(s[1]))) == NULL)
421 d1 = p - hexdigits;
422 if ((p = strchr(hexdigits, tolower(s[2]))) == NULL)
424 d2 = p - hexdigits;

Completed in 24 milliseconds