Lines Matching refs:_bitstr_byte
71 #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); \
145 int _stopbyte = _bitstr_byte(_nbits - 1), _value = -1; \
164 int _stopbyte = _bitstr_byte(_nbits - 1), _value = -1; \