_stopbyte          82 src/bitstring.h 	register int _stopbyte = _bit_byte(_stop); \
_stopbyte          83 src/bitstring.h 	if (_startbyte == _stopbyte) { \
_stopbyte          88 src/bitstring.h 		while (++_startbyte < _stopbyte) \
_stopbyte          90 src/bitstring.h 		_name[_stopbyte] &= (bitstr_t)(0xff << ((_stop&0x7) + 1)); \
_stopbyte          99 src/bitstring.h 	register int _stopbyte = _bit_byte(_stop); \
_stopbyte         100 src/bitstring.h 	if (_startbyte == _stopbyte) { \
_stopbyte         105 src/bitstring.h 		while (++_startbyte < _stopbyte) \
_stopbyte         107 src/bitstring.h 		_name[_stopbyte] |= (bitstr_t)(0xff >> (7 - (_stop&0x7))); \
_stopbyte         115 src/bitstring.h 	register int _stopbyte = _bit_byte(_nbits), _value = -1; \
_stopbyte         116 src/bitstring.h 	for (_byte = 0; _byte <= _stopbyte; ++_byte) \
_stopbyte         119 src/bitstring.h 			for (_stopbyte = _name[_byte]; (_stopbyte&0x1); \
_stopbyte         120 src/bitstring.h 			    ++_value, _stopbyte >>= 1); \
_stopbyte         130 src/bitstring.h 	register int _stopbyte = _bit_byte(_nbits), _value = -1; \
_stopbyte         131 src/bitstring.h 	for (_byte = 0; _byte <= _stopbyte; ++_byte) \
_stopbyte         134 src/bitstring.h 			for (_stopbyte = _name[_byte]; !(_stopbyte&0x1); \
_stopbyte         135 src/bitstring.h 			    ++_value, _stopbyte >>= 1); \