Lines Matching defs:bits
22 implementation of that is a bitfield, a data type that has bits
28 a nice C++ friendly class, where the actual bits aren't required
93 /** \brief A quick way identify the number of bits in an integer. */
99 unsigned int bits[ARRAY_SIZE];
102 /** \brief Constructor for the bitfield, it clears the \c bits
106 bits[i] = 0;
111 describing how the bits should look. The function
112 just copies the array into \c bits. */
115 bits[i] = in_bits[i];
120 This function checks to see if there are bits that
124 if (bits[i] & in_field.bits[i] != 0)
141 bits[array_pos] |= 1 << bit_pos;
145 this for the entire \c bits array. */
150 local_bits[i] = bits[i] | other.bits[i];
160 bits[i] = other.bits[i];
170 bits[i] |= other.bits[i];
202 the bits for that aggregate.