* Is a bit in the population map set? */
| 161 | * Is a bit in the population map set? |
| 162 | */ |
| 163 | static __inline boolean_t |
| 164 | popmap_is_set(popmap_t popmap[], int i) |
| 165 | { |
| 166 | |
| 167 | return ((popmap[i / NBPOPMAP] & (1UL << (i % NBPOPMAP))) != 0); |
| 168 | } |
| 169 | |
| 170 | /* |
| 171 | * The reservation structure |
no outgoing calls
no test coverage detected