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

Function bit_ffs

freebsd/sys/bitstring.h:265–269  ·  view source on GitHub ↗

Find the first bit set in bit string. */

Source from the content-addressed store, hash-verified

263
264/* Find the first bit set in bit string. */
265static inline void
266bit_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. */
272static inline void

Callers 1

ub_emptyFunction · 0.85

Calls 1

bit_ffs_atFunction · 0.85

Tested by

no test coverage detected