MCPcopy Create free account
hub / github.com/F-Stack/f-stack / bit_ffs_area

Function bit_ffs_area

freebsd/sys/bitstring.h:373–377  ·  view source on GitHub ↗

Find contiguous sequence of at least size set bits in bit string */

Source from the content-addressed store, hash-verified

371
372/* Find contiguous sequence of at least size set bits in bit string */
373static inline void
374bit_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 */
380static inline void

Callers

nothing calls this directly

Calls 1

bit_ffs_area_atFunction · 0.85

Tested by

no test coverage detected