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

Function bit_clear

freebsd/sys/bitstring.h:152–156  ·  view source on GitHub ↗

clear bit N of bit string name */

Source from the content-addressed store, hash-verified

150
151/* clear bit N of bit string name */
152static inline void
153bit_clear(bitstr_t *_bitstr, int _bit)
154{
155 _bitstr[_bit_idx(_bit)] &= ~_bit_mask(_bit);
156}
157
158/* Set bits start ... stop inclusive in bit string. */
159static inline void

Callers 9

ip_randomidFunction · 0.85
pmap_releaseFunction · 0.85
smmu_asid_freeFunction · 0.85
proc_id_clearFunction · 0.85
optimize_unrFunction · 0.85
free_unrlFunction · 0.85
tid_free_lockedFunction · 0.85
rxd_frag_to_sdFunction · 0.85
ng_btsocket_hci_raw_initFunction · 0.85

Calls 2

_bit_idxFunction · 0.85
_bit_maskFunction · 0.85

Tested by

no test coverage detected