STDC_BIT_WIDTH(9F) Kernel Functions for Drivers STDC_BIT_WIDTH(9F)

stdc_bit_width, stdc_bit_width_uc, stdc_bit_width_us, stdc_bit_width_ui, stdc_bit_width_ul, stdc_bit_width_ulldetermine minimum bit width

#include <sys/stdbit.h>

unsigned int
stdc_bit_width(generic_value_type value);

unsigned int
stdc_bit_width_uc(unsigned char value);

unsigned int
stdc_bit_width_us(unsigned short value);

unsigned int
stdc_bit_width_ui(unsigned int value);

unsigned int
stdc_bit_width_ul(unsigned long value);

unsigned int
stdc_bit_width_ull(unsigned long long value);

The () family of functions returns the minimum number of bits required to store value. This is calculated by taking the log base 2 of value and adding 1; however, if value is 0, then the function returns 0. The stdc_bit_width() function is generic and will operate on all 8, 16, 32, and 64-bit unsigned integers; however, it is only available in C23. The other functions all operate on a specific integer type, but otherwise behave the same and are available regardless of the C language version.

These functions may be called from , , or context.

The functions in the stdc_bit_width() family returns the minimum number of bits required to hold value. These functions cannot fail.

stdc_bit_width(3C), stdc_bit_ceil(9F), stdc_bit_floor(9F), stdc_count_ones(9F), stdc_count_zero(9F), stdc_first_leading_one(9F), stdc_first_leading_zero(9F), stdc_first_trailing_one(9F), stdc_first_trailing_zero(9F), stdc_has_single_bit(9F), stdc_leading_ones(9F), stdc_leading_zeros(9F), stdc_trailing_ones(9F), stdc_trailing_zeros(9F)

October 27, 2024 OmniOS