Home
last modified time | relevance | path

Searched refs:CHAR_BIT (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/lib/libc/minimal/include/
Dlimits.h35 #define CHAR_BIT __CHAR_BIT__ macro
36 #define LONG_BIT (__SIZEOF_LONG__ * CHAR_BIT)
37 #define WORD_BIT (__SIZEOF_POINTER__ * CHAR_BIT)
/Zephyr-latest/drivers/reset/
Dreset_rpi_pico.c74 offset = id / (config->reg_width * CHAR_BIT); in reset_rpi_status()
75 regbit = id % (config->reg_width * CHAR_BIT); in reset_rpi_status()
95 offset = id / (config->reg_width * CHAR_BIT); in reset_rpi_update()
96 regbit = id % (config->reg_width * CHAR_BIT); in reset_rpi_update()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dlll_filter.h21 #define LLL_FILTER_SIZE_MAX_BITMASK8 (1 * CHAR_BIT)
22 #define LLL_FILTER_SIZE_MAX_BITMASK16 (2 * CHAR_BIT)
/Zephyr-latest/lib/os/
Dcbprintf_complete.c41 #define CONVERTED_INT_BUFLEN ((CHAR_BIT * sizeof(uint_value_type) + 2) / 3)
/Zephyr-latest/lib/utils/
Djson.c802 __ASSERT_NO_MSG(descr_len < (sizeof(ret) * CHAR_BIT - 1)); in json_obj_parse()