Lines Matching full:bits
122 * Count the number of leading zero bits in the bitwise representation of `x`.
123 * When `x = 0`, this is the size of `x` in bits.
128 * @brief Count the number of leading zero bits in a 32-bit integer.
130 * @return Number of leading zero bits in `x`.
135 * @brief Count the number of leading zero bits in a 64-bit integer.
137 * @return Number of leading zero bits in `x`.
146 * Count the number of trailing zero bits in the bitwise representation of `x`.
147 * When `x = 0`, this is the size of `x` in bits.
152 * @brief Count the number of trailing zero bits in a 32-bit integer.
154 * @return Number of trailing zero bits in `x`.
159 * @brief Count the number of trailing zero bits in a 64-bit integer.
161 * @return Number of trailing zero bits in `x`.