Find the first bit clear in bit string. */
| 270 | |
| 271 | /* Find the first bit clear in bit string. */ |
| 272 | static inline void |
| 273 | bit_ffc(bitstr_t *_bitstr, int _nbits, int *_result) |
| 274 | { |
| 275 | bit_ffc_at(_bitstr, /*start*/0, _nbits, _result); |
| 276 | } |
| 277 | |
| 278 | /* Find contiguous sequence of at least size set bits at or after start */ |
| 279 | static inline void |
no test coverage detected