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

Function bit_ffc

freebsd/sys/bitstring.h:272–276  ·  view source on GitHub ↗

Find the first bit clear in bit string. */

Source from the content-addressed store, hash-verified

270
271/* Find the first bit clear in bit string. */
272static inline void
273bit_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 */
279static inline void

Callers 4

smmu_asid_allocFunction · 0.85
ub_fullFunction · 0.85
alloc_unrlFunction · 0.85
iflib_fl_refillFunction · 0.85

Calls 1

bit_ffc_atFunction · 0.85

Tested by

no test coverage detected