Searched refs:INT_BIT (Results 1 – 1 of 1) sorted by relevance
113 #define INT_BIT (sizeof(int)*CHAR_BIT) macro114 #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()