Home
last modified time | relevance | path

Searched refs:_bitstr_byte (Results 1 – 1 of 1) sorted by relevance

/xnu-8019.80.24/bsd/sys/
H A Dbitstring.h71 #define _bitstr_byte(bit) \ macro
89 ((name)[_bitstr_byte(bit)] & _bitstr_mask(bit))
93 ((name)[_bitstr_byte(bit)] |= _bitstr_mask(bit))
97 (void)os_atomic_or(&((name)[_bitstr_byte(bit)]), _bitstr_mask(bit), relaxed)
101 ((name)[_bitstr_byte(bit)] &= ~_bitstr_mask(bit))
105 (void)os_atomic_andnot(&((name)[_bitstr_byte(bit)]), _bitstr_mask(bit), relaxed)
111 int _startbyte = _bitstr_byte(_start); \
112 int _stopbyte = _bitstr_byte(_stop); \
128 int _startbyte = _bitstr_byte(_start); \
129 int _stopbyte = _bitstr_byte(_stop); \
[all …]