Find the first bit set in bit string. */
| 263 | |
| 264 | /* Find the first bit set in bit string. */ |
| 265 | static inline void |
| 266 | bit_ffs(bitstr_t *_bitstr, int _nbits, int *_result) |
| 267 | { |
| 268 | bit_ffs_at(_bitstr, /*start*/0, _nbits, _result); |
| 269 | } |
| 270 | |
| 271 | /* Find the first bit clear in bit string. */ |
| 272 | static inline void |
no test coverage detected