HomeSort by: relevance | last modified time | path
    Searched defs:_bit_byte (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/ia64/stand/common/
bitstring.h 42 #define _bit_byte(bit) \ macro
64 ((name)[_bit_byte(bit)] & _bit_mask(bit))
68 ((name)[_bit_byte(bit)] |= _bit_mask(bit))
72 ((name)[_bit_byte(bit)] &= ~_bit_mask(bit))
78 register int _startbyte = _bit_byte(_start); \
79 register int _stopbyte = _bit_byte(_stop); \
95 register int _startbyte = _bit_byte(_start); \
96 register int _stopbyte = _bit_byte(_stop); \
112 register int _stopbyte = _bit_byte(_nbits - 1), _value = -1; \
131 register int _stopbyte = _bit_byte(_nbits - 1), _value = -1;
    [all...]
  /src/include/
bitstring.h 58 #define _bit_byte(bit) \ macro
80 /*LINTED bitwise on signed*/((name)[_bit_byte(bit)] & _bit_mask(bit))
85 ((name)[_bit_byte(bit)] = \
86 (unsigned char)(_bit_mask(bit) | (name)[_bit_byte(bit)]))
91 ((name)[_bit_byte(bit)] &= (unsigned char)~_bit_mask(bit))

Completed in 11 milliseconds