* Set a bit in the population map. */
| 141 | * Set a bit in the population map. |
| 142 | */ |
| 143 | static __inline void |
| 144 | popmap_set(popmap_t popmap[], int i) |
| 145 | { |
| 146 | |
| 147 | popmap[i / NBPOPMAP] |= 1UL << (i % NBPOPMAP); |
| 148 | } |
| 149 | |
| 150 | /* |
| 151 | * Is a bit in the population map clear? |
no outgoing calls
no test coverage detected