Find contiguous sequence of at least size set bits in bit string */
| 371 | |
| 372 | /* Find contiguous sequence of at least size set bits in bit string */ |
| 373 | static inline void |
| 374 | bit_ffs_area(bitstr_t *_bitstr, int _nbits, int _size, int *_result) |
| 375 | { |
| 376 | bit_ffs_area_at(_bitstr, /*start*/0, _nbits, _size, _result); |
| 377 | } |
| 378 | |
| 379 | /* Find contiguous sequence of at least size cleared bits in bit string */ |
| 380 | static inline void |
nothing calls this directly
no test coverage detected