* Is a bit in the population map clear? */
| 151 | * Is a bit in the population map clear? |
| 152 | */ |
| 153 | static __inline boolean_t |
| 154 | popmap_is_clear(popmap_t popmap[], int i) |
| 155 | { |
| 156 | |
| 157 | return ((popmap[i / NBPOPMAP] & (1UL << (i % NBPOPMAP))) == 0); |
| 158 | } |
| 159 | |
| 160 | /* |
| 161 | * Is a bit in the population map set? |
no outgoing calls
no test coverage detected