Home
last modified time | relevance | path

Searched refs:_CONCAT (Results 1 – 25 of 106) sorted by relevance

12345

/Zephyr-latest/boards/native/nrf_bsim/
Dnsi_if.c22 #define nsif_cpun_pre_cmdline_hooks _CONCAT(_CONCAT(nsif_cpu, CONFIG_NATIVE_SIMULATOR_MCU_N),\
24 #define nsif_cpun_save_test_arg _CONCAT(_CONCAT(nsif_cpu, CONFIG_NATIVE_SIMULATOR_MCU_N),\
26 #define nsif_cpun_pre_hw_init_hooks _CONCAT(_CONCAT(nsif_cpu, CONFIG_NATIVE_SIMULATOR_MCU_N),\
28 #define nsif_cpun_boot _CONCAT(_CONCAT(nsif_cpu, CONFIG_NATIVE_SIMULATOR_MCU_N),\
30 #define nsif_cpun_cleanup _CONCAT(_CONCAT(nsif_cpu, CONFIG_NATIVE_SIMULATOR_MCU_N),\
32 #define nsif_cpun_irq_raised _CONCAT(_CONCAT(nsif_cpu, CONFIG_NATIVE_SIMULATOR_MCU_N),\
34 #define nsif_cpun_test_hook _CONCAT(_CONCAT(nsif_cpu, CONFIG_NATIVE_SIMULATOR_MCU_N),\
36 #define nsif_cpun_irq_raised_from_sw _CONCAT(_CONCAT(nsif_cpu, CONFIG_NATIVE_SIMULATOR_MCU_N),\
/Zephyr-latest/include/zephyr/net/
Dcoap_service.h62 static struct coap_service_data _CONCAT(coap_service_data_, _name) = { \
72 .data = &_CONCAT(coap_service_data_, _name), \
114 STRUCT_SECTION_ITERABLE_ALTERNATE(_CONCAT(coap_resource_, _service), coap_resource, \
135 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[]; \
136 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[]; \
138 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[0], \
139 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[0])
180 STRUCT_SECTION_FOREACH_ALTERNATE(_CONCAT(coap_resource_, _service), coap_resource, _it)
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/
Dcntr.h10 _CONCAT(NRF_GRTC_EVENT_COMPARE_, HAL_CNTR_GRTC_CC_IDX_TICKER)
12 _CONCAT(_CONCAT(GRTC_INTENSET1_COMPARE, HAL_CNTR_GRTC_CC_IDX_TICKER), _Msk)
15 _CONCAT(NRF_GRTC_EVENT_COMPARE_, HAL_CNTR_GRTC_CC_IDX_RADIO)
/Zephyr-latest/include/zephyr/zbus/
Dzbus.h256 _CONCAT(_chan, _ZBUS_OBSERVATION_PREFIX(UTIL_INC(_idx)))) = {.chan = &_chan, \
259 _CONCAT(_CONCAT(_chan, _ZBUS_OBSERVATION_PREFIX(UTIL_INC(_idx))), \
263 #define _ZBUS_RUNTIME_OBSERVERS(_name) .observers = &(_CONCAT(_observers_, _name)),
264 #define _ZBUS_RUNTIME_OBSERVERS_DECL(_name) static sys_slist_t _CONCAT(_observers_, _name);
270 #define _ZBUS_MESSAGE_NAME(_name) _CONCAT(_zbus_message_, _name)
274 static struct zbus_channel_data _CONCAT(_zbus_chan_data_, _name) = { \
277 .sem = Z_SEM_INITIALIZER(_CONCAT(_zbus_chan_data_, _name).sem, 1, 1), \
282 &_CONCAT(_zbus_chan_data_, _name).observers),)) \
284 static K_MUTEX_DEFINE(_CONCAT(_zbus_mutex_, _name)); \
292 .data = &_CONCAT(_zbus_chan_data_, _name), \
[all …]
/Zephyr-latest/include/zephyr/drivers/gpio/
Dgpio_mmio32.h49 static struct gpio_mmio32_context _CONCAT(Z_DEVICE_DT_DEV_ID(node_id), _ctx); \
51 static const struct gpio_mmio32_config _CONCAT(Z_DEVICE_DT_DEV_ID(node_id), _cfg) = { \
62 &_CONCAT(Z_DEVICE_DT_DEV_ID(node_id), _ctx), \
63 &_CONCAT(Z_DEVICE_DT_DEV_ID(node_id), _cfg), \
/Zephyr-latest/include/zephyr/linker/
Diterable_sections.h16 _CONCAT(_##struct_type, _list_start) = .; \
18 _CONCAT(_##struct_type, _list_end) = .
21 _CONCAT(_##struct_type, _list_start) = .; \
24 _CONCAT(_##struct_type, _list_end) = .
31 _CONCAT(_##struct_type, _list_start) = .; \
33 _CONCAT(_##struct_type, _list_end) = .
/Zephyr-latest/include/zephyr/net/http/
Dservice.h171 extern struct http_resource_desc _CONCAT(_http_resource_desc_##_name, _list_start)[]; \
172 extern struct http_resource_desc _CONCAT(_http_resource_desc_##_name, _list_end)[]; \
174 &_CONCAT(_http_resource_desc_##_name, _list_start)[0], \
175 &_CONCAT(_http_resource_desc_##_name, _list_end)[0])
200 extern struct http_resource_desc _CONCAT(_http_resource_desc_##_name, _list_start)[]; \
201 extern struct http_resource_desc _CONCAT(_http_resource_desc_##_name, _list_end)[]; \
203 &_CONCAT(_http_resource_desc_##_name, _list_start)[0], \
204 &_CONCAT(_http_resource_desc_##_name, _list_end)[0], \
/Zephyr-latest/include/zephyr/sensing/
Dsensing_sensor.h133 _CONCAT(_CONCAT(__sensing_sensor_info_, idx), DEVICE_DT_NAME_GET(node))
164 _CONCAT(__sensing_connections_, DEVICE_DT_NAME_GET(node))
263 _CONCAT(_CONCAT(__sensing_submit_cfg_, idx), DEVICE_DT_NAME_GET(node))
274 _CONCAT(_CONCAT(__sensing_iodev_, idx), DEVICE_DT_NAME_GET(node))
303 _CONCAT(_CONCAT(__sensing_sensor_, idx), DEVICE_DT_NAME_GET(node))
/Zephyr-latest/include/zephyr/modem/
Dppp.h182 static uint8_t _CONCAT(_name, _receive_buf)[_buf_size]; \
183 static uint8_t _CONCAT(_name, _transmit_buf)[_buf_size]; \
187 .receive_buf = _CONCAT(_name, _receive_buf), \
188 .transmit_buf = _CONCAT(_name, _transmit_buf), \
192 NET_DEVICE_INIT(_CONCAT(ppp_net_dev_, _name), "modem_ppp_" # _name, \
/Zephyr-latest/soc/st/stm32/stm32wb0x/
Dsoc.c59 #define SMPS_PRESCALER _CONCAT(LL_RCC_SMPS_DIV_, DT_PROP(PWRC, smps_clock_prescaler))
66 _CONCAT(LL_PWR_SMPS_BOM, DT_PROP(PWRC, smps_bom))
76 _CONCAT(LL_PWR_SMPS_PRECH_LIMIT_CUR_, \
81 _CONCAT(LL_PWR_SMPS_OUTPUT_VOLTAGE_, \
/Zephyr-latest/modules/hal_nordic/nrfx/
Dnrfx_log.h16 #define NRFX_MODULE_PREFIX _CONCAT(NRFX_, NRFX_LOG_MODULE)
24 #if !IS_ENABLED(_CONCAT(NRFX_MODULE_PREFIX, _CONFIG_LOG_ENABLED))
28 _CONCAT(NRFX_MODULE_PREFIX, _CONFIG_LOG_LEVEL)
Dnrfx_config.h1018 NRFX_CONFIG_MASK_DT(DT_NODELABEL(_CONCAT(dppic, inst_num)), source_channels)
1022 NRFX_CONFIG_MASK_DT(DT_NODELABEL(_CONCAT(dppic, inst_num)), sink_channels)
1025 UTIL_OR(DT_NODE_HAS_PROP(DT_NODELABEL(_CONCAT(dppic, inst_num)), source_channels), \
1026 DT_NODE_HAS_PROP(DT_NODELABEL(_CONCAT(dppic, inst_num)), sink_channels))
1029 #define NRFX_CONFIG_DPPI_CHANNELS_ENTRY_NAME(node_id) _CONCAT(_CONCAT(m_, node_id), _channels)
1031 NRFX_CONFIG_DPPI_CHANNELS_ENTRY_NAME(DT_NODELABEL(_CONCAT(dppic, inst_num)))
1072 (DT_NODELABEL(_CONCAT(ipct, inst_num))))
1083 (DT_NODE_HAS_PROP(DT_NODELABEL(_CONCAT(ipct, inst_num)), owned_channels)))
1086 #define NRFX_CONFIG_IPCT_CHANNELS_ENTRY_NAME(node_id) _CONCAT(_CONCAT(m_, node_id), _channels)
1090 (NRFX_CONFIG_IPCT_CHANNELS_ENTRY_NAME(DT_NODELABEL(_CONCAT(ipct, inst_num)))))
/Zephyr-latest/subsys/sensing/sensor/phy_3d_sensor/
Dphy_3d_sensor.c226 static struct rtio_iodev_sqe _CONCAT(sqes, _inst)[DT_INST_PROP_LEN(_inst, \
228 static const struct phy_3d_sensor_custom *_CONCAT(customs, _inst) \
230 static struct phy_3d_sensor_data _CONCAT(data, _inst) = { \
231 .sqes = _CONCAT(sqes, _inst), \
232 .customs = _CONCAT(customs, _inst), \
234 static const struct phy_3d_sensor_config _CONCAT(cfg, _inst) = { \
243 &_CONCAT(data, _inst), &_CONCAT(cfg, _inst), \
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/
Dradio_nrf5_resources.h12 #define EVENT_TIMER _CONCAT(NRF_TIMER, EVENT_TIMER_ID)
46 #define EVENT_TIMER _CONCAT(NRF_TIMER, EVENT_TIMER_ID)
118 #define EVENT_TIMER _CONCAT(NRF_TIMER, EVENT_TIMER_ID)
Dradio_nrf5_dppi_resources.h41 _CONCAT(NRF_PPIB_TASK_SEND_, HAL_EVENT_TIMER_START_PPI)
43 _CONCAT(NRF_PPIB_EVENT_RECEIVE_, HAL_EVENT_TIMER_START_PPI)
/Zephyr-latest/include/zephyr/sys/
Dkobject.h66 static void * const _CONCAT(_object_list_, name_)[] = \
69 _CONCAT(_object_access_, name_)) = \
71 (_CONCAT(_object_list_, name_)) }
Diterable_sections.h44 __in_section(_##secname, static, _CONCAT(section_postfix, _)) __used __noasan
55 #define TYPE_SECTION_START(secname) _CONCAT(_##secname, _list_start)
65 #define TYPE_SECTION_END(secname) _CONCAT(_##secname, _list_end)
/Zephyr-latest/include/zephyr/drivers/
Dpinctrl.h93 _CONCAT(PINCTRL_STATE_, \
103 _CONCAT(__pinctrl_dev_config, DEVICE_DT_NAME_GET(node_id))
112 _CONCAT(__pinctrl_states, DEVICE_DT_NAME_GET(node_id))
122 _CONCAT(__pinctrl_state_pins_ ## state_idx, DEVICE_DT_NAME_GET(node_id))
136 _CONCAT(PINCTRL_SKIP_, \
Dsensor.h658 static struct sensor_chan_spec _CONCAT(__channel_array_, name)[] = {__VA_ARGS__}; \
659 static struct sensor_read_config _CONCAT(__sensor_read_config_, name) = { \
662 .channels = _CONCAT(__channel_array_, name), \
663 .count = ARRAY_SIZE(_CONCAT(__channel_array_, name)), \
664 .max = ARRAY_SIZE(_CONCAT(__channel_array_, name)), \
666 RTIO_IODEV_DEFINE(name, &__sensor_iodev_api, _CONCAT(&__sensor_read_config_, name))
688 static struct sensor_stream_trigger _CONCAT(__trigger_array_, name)[] = {__VA_ARGS__}; \
689 static struct sensor_read_config _CONCAT(__sensor_read_config_, name) = { \
692 .triggers = _CONCAT(__trigger_array_, name), \
693 .count = ARRAY_SIZE(_CONCAT(__trigger_array_, name)), \
[all …]
Demul.h111 #define EMUL_DT_NAME_GET(node_id) _CONCAT(__emulreg_, node_id)
117 #define Z_EMUL_REG_BUS_IDENTIFIER(_dev_node_id) _CONCAT(_CONCAT(__emulreg_, _dev_node_id), _bus)
/Zephyr-latest/subsys/sensing/sensor/hinge_angle/
Dhinge_angle.c157 static struct hinge_angle_context _CONCAT(hinge_ctx, _inst); \
158 static struct sensing_callback_list _CONCAT(hinge_cb, _inst) = { \
160 .context = &_CONCAT(hinge_ctx, _inst), \
163 &_CONCAT(hinge_cb, _inst), \
165 &_CONCAT(hinge_ctx, _inst), NULL, \
/Zephyr-latest/drivers/gpio/
Dgpio_renesas_ra.c393 const uint8_t _CONCAT(n, ___pins##i[]) = {DT_FOREACH_PROP_ELEM_SEP( \
394 n, _CONCAT(DT_STRING_TOKEN_BY_IDX(n, p, i), _pins), DT_PROP_BY_IDX, (,))};
398 .port_irq = _CONCAT(RA_NUM_, DT_STRING_UPPER_TOKEN_BY_IDX(n, p, i)), \
402 .pins = _CONCAT(n, ___pins##i), \
403 .num = ARRAY_SIZE(_CONCAT(n, ___pins##i)), \
404 .isr = _CONCAT(n, _CONCAT(gpio_ra_isr_, DT_STRING_TOKEN_BY_IDX(n, p, i))), \
408 static void _CONCAT(n, _CONCAT(gpio_ra_isr_, DT_STRING_TOKEN_BY_IDX(n, p, i)))( \
412 _CONCAT(RA_NUM_, DT_STRING_UPPER_TOKEN_BY_IDX(n, p, i))); \
/Zephyr-latest/include/zephyr/toolchain/
Dcommon.h138 #define _CONCAT(x, y) _DO_CONCAT(x, y) macro
173 enum _CONCAT(__build_assert_enum, __COUNTER__) { \
174 _CONCAT(__build_assert, __COUNTER__) = 1 / !!(EXPR) \
/Zephyr-latest/samples/boards/nordic/nrfx/src/
Dmain.c20 #define GPIOTE_NODE DT_NODELABEL(_CONCAT(gpiote, GPIOTE_INST))
24 BUILD_ASSERT(IS_ENABLED(_CONCAT(CONFIG_, _CONCAT(NRFX_GPIOTE, GPIOTE_INST))),
/Zephyr-latest/include/zephyr/arch/x86/intel64/
Darch.h79 X86_RESERVE_IRQ(irq_p, _CONCAT(_irq_alloc_fixed, __COUNTER__)); \
88 X86_RESERVE_IRQ(irq_p, _CONCAT(_irq_alloc_fixed, __COUNTER__)); \

12345