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

/bind-9.11.3/lib/dns/rdata/generic/
H A Dopt_41.c119 isc_uint8_t addrbytes; local
155 addrbytes = (addrlen + 7) / 8;
156 if (addrbytes + 4 != length)
159 if (addrbytes != 0U && (addrlen % 8) != 0) {
161 bits &= sregion.base[addrbytes - 1];
162 if (bits != sregion.base[addrbytes - 1])
165 isc_region_consume(&sregion, addrbytes);
/bind-9.11.3/bin/named/
H A Dclient.c1978 isc_uint8_t addrlen, addrbytes, scope, *paddr; local
2062 addrbytes = (addrlen + 7) / 8;
2063 if (isc_buffer_remaininglength(buf) < addrbytes) {
2071 if (addrbytes != 0U) {
2072 memmove(paddr, isc_buffer_current(buf), addrbytes);
2073 isc_buffer_forward(buf, addrbytes);
2074 optlen -= addrbytes;
2078 bits &= paddr[addrbytes - 1];
2079 if (bits != paddr[addrbytes - 1])
/bind-9.11.3/lib/dns/
H A Dmessage.c3374 isc_uint8_t addrlen, addrbytes, scopelen; local
3387 addrbytes = (addrlen + 7) / 8;
3388 if (isc_buffer_remaininglength(ecsbuf) < addrbytes)
3391 if (addrbytes > sizeof(addr))
3395 for (i = 0; i < addrbytes; i ++)

Completed in 1339 milliseconds