Searched refs:INT_SIZE (Results 1 – 2 of 2) sorted by relevance
58 #define INT_SIZE (BYTE_SIZE * sizeof (int)) macro623 s[bitno / INT_SIZE] |= 1U << (bitno % INT_SIZE); in setbit()632 s[bitno / INT_SIZE] &= ~(1U << (bitno % INT_SIZE)); in clrbit()641 return s[bitno / INT_SIZE] & (1U << (bitno % INT_SIZE)); in testbit()652 for (offset = 0; !*s; offset += INT_SIZE, ++s) { in ffsbit()
124 #define INT_SIZE (BYTE_SIZE * sizeof (int)) macro132 s[bitno / INT_SIZE] |= 1 << (bitno % INT_SIZE); in setbit()141 s[bitno / INT_SIZE] &= ~(1 << (bitno % INT_SIZE)); in clrbit()150 return s[bitno / INT_SIZE] & (1 << (bitno % INT_SIZE)); in testbit()161 for (offset = 0; !*s; offset += (int)INT_SIZE, ++s) { in ffsbit()