* Clear a bit in the population map. */
| 131 | * Clear a bit in the population map. |
| 132 | */ |
| 133 | static __inline void |
| 134 | popmap_clear(popmap_t popmap[], int i) |
| 135 | { |
| 136 | |
| 137 | popmap[i / NBPOPMAP] &= ~(1UL << (i % NBPOPMAP)); |
| 138 | } |
| 139 | |
| 140 | /* |
| 141 | * Set a bit in the population map. |
no outgoing calls
no test coverage detected