Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 49) sorted by relevance

12

/subsys/settings/include/settings/
A Dsettings_zms.h65 #define ZMS_NAME_ID_FROM_LL_NODE(x) (x & ~BIT(0)) argument
66 #define ZMS_LL_NODE_FROM_NAME_ID(x) (x | BIT(0)) argument
67 #define ZMS_UPDATE_COLLISION_NUM(x, y) \ argument
69 #define ZMS_COLLISION_NUM(x) ((x & ZMS_COLLISIONS_MASK) >> 1) argument
70 #define ZMS_NAME_ID_FROM_HASH(x) ((x & ZMS_HASH_TOTAL_MASK) | BIT(31)) argument
71 #define ZMS_DATA_ID_FROM_HASH(x) (ZMS_NAME_ID_FROM_HASH(x) + ZMS_DATA_ID_OFFSET) argument
72 #define ZMS_DATA_ID_FROM_NAME(x) (x + ZMS_DATA_ID_OFFSET) argument
73 #define ZMS_DATA_ID_FROM_LL_NODE(x) (ZMS_NAME_ID_FROM_LL_NODE(x) + ZMS_DATA_ID_OFFSET) argument
/subsys/bluetooth/controller/ll_sw/
A Dull_internal.h12 #define CONN_INTERVAL_MIN(x) (0U) argument
15 #define CONN_INTERVAL_MIN(x) (6U) argument
19 #define CONN_INTERVAL_MIN(x) (MAX(ull_conn_interval_min_get(x), 1U)) argument
26 #define DEFER_APM_CHECK(x, y, z) (false) argument
44 #define DEFER_APM_CHECK(x, y, z) (ull_handle_cpr_anchor_point_move(x, y, z)) argument
47 #define RADIO_CONN_EVENTS(x, y) ((uint16_t)DIV_ROUND_UP(x, y)) argument
50 #define RADIO_SYNC_EVENTS(x, y) ((uint16_t)DIV_ROUND_UP(x, y)) argument
A Dlll_chan.c132 uint8_t x; in lll_chan_iso_subevent() local
309 uint8_t x, y; in chan_d() local
/subsys/bluetooth/controller/ll_sw/openisa/hal/RV32M1/
A Dticker.h33 #define HAL_TICKER_US_TO_TICKS(x) \ argument
43 #define HAL_TICKER_US_TO_TICKS_CEIL(x) \ argument
51 #define HAL_TICKER_TICKS_TO_US(x) \ argument
58 #define HAL_TICKER_REMAINDER(x) \ argument
A Dswi.h9 #define SetPendingIRQ(x) (EVENT_UNIT->INTPTPENDSET |= (uint32_t)(1 << (x))) argument
/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/
A Dticker.h46 #define HAL_TICKER_US_TO_TICKS(x) \ argument
56 #define HAL_TICKER_US_TO_TICKS_CEIL(x) \ argument
64 #define HAL_TICKER_TICKS_TO_US_64BIT(x) \ argument
70 #define HAL_TICKER_TICKS_TO_US(x) ((uint32_t)HAL_TICKER_TICKS_TO_US_64BIT(x)) argument
73 #define HAL_TICKER_REMAINDER(x) \ argument
/subsys/usb/device/
A Dos_desc.h33 #define usb_os_desc_enabled(x) false argument
34 #define usb_handle_os_desc(x, y, z) -ENOTSUP argument
35 #define usb_handle_os_desc_feature(x, y, z) -ENOTSUP argument
36 #define usb_register_os_desc(x) argument
A Dbos_desc.h22 #define usb_handle_bos(x, y, z) -ENOTSUP argument
/subsys/fs/zms/
A Dzms_priv.h21 #define SECTOR_NUM(x) FIELD_GET(ADDR_SECT_MASK, x) argument
22 #define SECTOR_OFFSET(x) FIELD_GET(ADDR_OFFS_MASK, x) argument
34 #define ZMS_GET_VERSION(x) FIELD_GET(ZMS_VERSION_MASK, x) argument
38 #define ZMS_GET_MAGIC_NUMBER(x) FIELD_GET(ZMS_MAGIC_NUMBER_MASK, x) argument
/subsys/bluetooth/controller/util/
A Dmem.h13 #define MALIGN(x) __attribute__((aligned(x))) argument
37 #define MROUND(x) (((uint32_t)(x)+3) & (~((uint32_t)3))) argument
/subsys/fb/
A Dcfb.c19 #define LSB_BIT_MASK(x) BIT_MASK(x) argument
20 #define MSB_BIT_MASK(x) (BIT_MASK(x) << (8 - x)) argument
78 uint8_t x, uint8_t y, bool vtiled) in get_glyph_byte()
99 uint8_t c, uint16_t x, uint16_t y, in draw_char_vtmono()
222 uint8_t c, uint16_t x, uint16_t y, in draw_char_htmono()
273 static inline void draw_point(struct char_framebuffer *fb, int16_t x, int16_t y) in draw_point()
332 static int draw_text(const struct device *dev, const char *const str, int16_t x, int16_t y, in draw_text()
400 uint16_t x = 0; in cfb_draw_circle() local
427 int cfb_draw_text(const struct device *dev, const char *const str, int16_t x, int16_t y) in cfb_draw_text()
432 int cfb_print(const struct device *dev, const char *const str, uint16_t x, uint16_t y) in cfb_print()
[all …]
/subsys/bluetooth/mesh/
A Dblob.h53 #define _BLOB_LOG_2_CEIL(l, x) ((x) <= (1U << l)) ? l : argument
54 #define _BLOB_LOG_2_FLOOR(l, x) ((x) < (1U << (l + 1))) ? l : argument
56 #define BLOB_BLOCK_SIZE_LOG_CEIL(x) (LISTIFY(20, _BLOB_LOG_2_CEIL, (), x) 20) argument
57 #define BLOB_BLOCK_SIZE_LOG_FLOOR(x) (LISTIFY(20, _BLOB_LOG_2_FLOOR, (), x) 20) argument
/subsys/tracing/ctf/
A Dctf_map.h61 #define MAP0(f, x, peek, ...) f(x) MAP_NEXT(peek, MAP1)(f, peek, __VA_ARGS__) argument
62 #define MAP1(f, x, peek, ...) f(x) MAP_NEXT(peek, MAP0)(f, peek, __VA_ARGS__) argument
67 #define MAP_LIST0(f, x, peek, ...) f(x) MAP_LIST_NEXT(peek, MAP_LIST1)(f, peek, __VA_ARGS__) argument
68 #define MAP_LIST1(f, x, peek, ...) f(x) MAP_LIST_NEXT(peek, MAP_LIST0)(f, peek, __VA_ARGS__) argument
/subsys/lorawan/services/
A Dfrag_decoder_lowmem.c28 static inline size_t matrix_location_to_index(size_t x, size_t y, size_t m) in matrix_location_to_index()
37 static bool triangular_matrix_get_entry(struct sys_bitarray *m2tbm, size_t x, size_t y, size_t m) in triangular_matrix_get_entry()
50 static void triangular_matrix_set_entry(struct sys_bitarray *m2tbm, size_t x, size_t y, size_t m) in triangular_matrix_set_entry()
60 static void triangular_matrix_clear_entry(struct sys_bitarray *m2tbm, size_t x, size_t y, size_t m) in triangular_matrix_clear_entry()
147 int32_t x; in frag_dec_parity_matrix_vector() local
/subsys/net/lib/lwm2m/
A Dlwm2m_message_handling.h29 #define COAP_RESPONSE_CODE_CLASS(x) (x >> 5) argument
30 #define COAP_RESPONSE_CODE_DETAIL(x) (x & 0x1F) argument
/subsys/usb/device/class/hid/
A Dcore.c105 #define DEFINE_HID_DESCR(x, _) \ argument
121 #define DEFINE_HID_DESCR(x, _) \ argument
606 #define DEFINE_HID_EP(x, _) \ argument
612 #define DEFINE_HID_EP(x, _) \ argument
633 #define DEFINE_HID_CFG_DATA(x, _) \ argument
732 #define DEFINE_HID_DEV_DATA(x, _) \ argument
735 #define DEFINE_HID_DEVICE(x, _) \ argument
/subsys/bluetooth/controller/ll_sw/nordic/lll/
A Dlll_df_types.h68 #define RSSI_DBM_TO_DECI_DBM(x) (-(x) * 10) argument
82 #define IQ_SAMPLE_CONVERT_12_TO_8_BIT(x) ((int16_t)((x) >> 4)) argument
84 #define IQ_SAMPLE_CONVERT_12_TO_8_BIT(x) ((int16_t)((x) >> 2)) argument
86 #define IQ_SAMPLE_CONVERT_12_TO_8_BIT(x) ((int8_t)(x)) argument
/subsys/mgmt/mcumgr/grp/img_mgmt/include/mgmt/mcumgr/grp/img_mgmt/
A Dimg_mgmt_priv.h204 #define ERASED_VAL_32(x) (((x) << 24) | ((x) << 16) | ((x) << 8) | (x)) argument
/subsys/net/lib/http/headers/
A Dmlog.h12 #define LOG_MODULE_REGISTER(x, y) argument
/subsys/net/l2/virtual/ipip/
A Dipip.c617 #define NET_IPIP_INTERFACE_INIT(x, _) \ argument
633 #define INIT_IPIP_CONTEXT_PTR(x, _) \ argument
640 #define INIT_IPIP_CONTEXT_IFACE(x, _) \ argument
/subsys/random/
A Drandom_xoshiro128.c40 static inline uint32_t rotl(const uint32_t x, int k) in rotl()
/subsys/net/l2/ethernet/
A Dvlan.c73 #define ETH_DEFINE_VLAN(x, _) \ argument
90 #define INIT_VLAN_CONTEXT_PTR(x, _) \ argument
97 #define INIT_VLAN_CONTEXT_IFACE(x, _) \ argument
/subsys/testsuite/include/zephyr/
A Dtc_util.h47 #define TC_STR_HELPER(x) #x argument
48 #define TC_STR(x) TC_STR_HELPER(x) argument
/subsys/llext/
A Dllext_load.c218 #define REGIONS_OVERLAP_ON(x, y, f) \ argument
449 elf_shdr_t *x = ldr->sects + i; in llext_map_sections() local
/subsys/mgmt/osdp/src/
A Dosdp_common.h27 #define BYTE_0(x) (uint8_t)(((x) >> 0) & 0xFF) argument
28 #define BYTE_1(x) (uint8_t)(((x) >> 8) & 0xFF) argument
29 #define BYTE_2(x) (uint8_t)(((x) >> 16) & 0xFF) argument
30 #define BYTE_3(x) (uint8_t)(((x) >> 24) & 0xFF) argument
39 #define AES_PAD_LEN(x) ((x + 16 - 1) & (~(16 - 1))) argument

Completed in 75 milliseconds

12