Home
last modified time | relevance | path

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

/minix/external/bsd/bind/dist/lib/dns/
H A Drdata.c1614 static const char atob_digits[86] = variable
1669 } else if ((s = strchr(atob_digits, c)) != NULL) { in byte_atob()
1671 word = (isc_int32_t)(s - atob_digits); in byte_atob()
1675 word += (isc_int32_t)(s - atob_digits); in byte_atob()
1679 word += (isc_int32_t)(s - atob_digits); in byte_atob()
1835 tr.base[0] = atob_digits[(tmpword / in byte_btoa()
1839 tr.base[1] = atob_digits[tmpword / (85 * 85 * 85)]; in byte_btoa()
1841 tr.base[2] = atob_digits[tmpword / (85 * 85)]; in byte_btoa()
1843 tr.base[3] = atob_digits[tmpword / 85]; in byte_btoa()
1845 tr.base[4] = atob_digits[tmpword]; in byte_btoa()