Searched defs:byte (Results 1 - 5 of 5) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/
H A Dlfsr.c90 unsigned int byte; local
97 byte = count;
99 while (byte--) {
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dinterfaceiter.c218 unsigned char byte; local
220 byte = ((strchr(hex, address[i * 2]) - hex) << 4) |
222 addr6.s6_addr[i] = byte;
/bind-9.6-ESV-R11/lib/dns/
H A Dnsec.c60 unsigned int byte, shift, mask; local
62 byte = array[index / 8];
66 return ((byte & mask) != 0);
H A Dnsec3.c68 unsigned int byte, shift, mask; local
70 byte = array[index / 8];
74 return ((byte & mask) != 0);
/bind-9.6-ESV-R11/contrib/nslint-2.1a3/
H A Dnslint.c2022 register u_int byte; local
2031 byte = addr & 0xff;
2032 *--cp = byte % 10 + '0';
2033 byte /= 10;
2034 if (byte > 0) {
2035 *--cp = byte % 10 + '0';
2036 byte /= 10;
2037 if (byte > 0)
2038 *--cp = byte + '0';

Completed in 37 milliseconds