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

/bind-9.11.3/lib/dns/
H A Drpz.c253 * Return the bit number of the highest set bit in 'zbit'.
257 zbit_to_num(dns_rpz_zbits_t zbit) { argument
260 REQUIRE(zbit != 0);
263 if ((zbit & 0xffffffff00000000L) != 0) {
264 zbit >>= 32;
268 if ((zbit & 0xffff0000) != 0) {
269 zbit >>= 16;
272 if ((zbit & 0xff00) != 0) {
273 zbit >>= 8;
276 if ((zbit
1642 dns_rpz_zbits_t zbit; local
[all...]

Completed in 1553 milliseconds