Home
last modified time | relevance | path

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

/freebsd/usr.bin/sockstat/
H A Dsockstat.c113 #define INT_BIT (sizeof(int)*CHAR_BIT) macro
114 #define SET_PORT(p) do { ports[p / INT_BIT] |= 1 << (p % INT_BIT); } while (0)
115 #define CHK_PORT(p) (ports[p / INT_BIT] & (1 << (p % INT_BIT)))
298 if ((ports = calloc(65536 / INT_BIT, sizeof(int))) == NULL) in parse_ports()