Searched refs:tmpword (Results 1 - 1 of 1) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/
H A Drdata.c1817 register isc_int32_t tmpword = word; local
1819 if (tmpword < 0) {
1824 tmpword -= (isc_int32_t)(85 * 85 * 85 * 85 * 32);
1826 if (tmpword < 0) {
1828 tmpword -= (isc_int32_t)(85 * 85 * 85 * 85 * 32);
1832 tr.base[0] = atob_digits[(tmpword /
1835 tmpword %= (isc_int32_t)(85 * 85 * 85 * 85);
1836 tr.base[1] = atob_digits[tmpword / (85 * 85 * 85)];
1837 tmpword %= (85 * 85 * 85);
1838 tr.base[2] = atob_digits[tmpword / (8
[all...]

Completed in 415 milliseconds