Home
last modified time | relevance | path

Searched refs:CONCAT (Results 1 – 25 of 32) sorted by relevance

12

/Zephyr-latest/cmake/compiler/gcc/
Dtarget_riscv.cmake7 string(CONCAT riscv_mabi ${riscv_mabi} "64")
8 string(CONCAT riscv_march ${riscv_march} "64")
12 string(CONCAT riscv_mabi "i" ${riscv_mabi} "32")
13 string(CONCAT riscv_march ${riscv_march} "32")
17 string(CONCAT riscv_mabi ${riscv_mabi} "e")
18 string(CONCAT riscv_march ${riscv_march} "e")
20 string(CONCAT riscv_march ${riscv_march} "i")
24 string(CONCAT riscv_march ${riscv_march} "m")
27 string(CONCAT riscv_march ${riscv_march} "a")
33 string(CONCAT riscv_mabi ${riscv_mabi} "d")
[all …]
/Zephyr-latest/include/zephyr/drivers/spi/
Drtio.h39 RTIO_DEFINE(CONCAT(_name, _r), _sq_sz, _cq_sz); \
41 .r = &CONCAT(_name, _r), \
/Zephyr-latest/soc/nordic/
Dsysbuild.cmake18 string(CONCAT launcher_board ${BOARD} "/" ${launcher_soc} "/" ${launcher_core})
28 string(CONCAT launcher_snippet "nordic-" ${launcher_vpr})
/Zephyr-latest/include/zephyr/drivers/i2c/
Drtio.h40 RTIO_DEFINE(CONCAT(_name, _r), _sq_sz, _cq_sz); \
42 .r = &CONCAT(_name, _r), \
/Zephyr-latest/include/zephyr/drivers/i3c/
Drtio.h41 RTIO_DEFINE(CONCAT(_name, _r), _sq_sz, _cq_sz); \
43 .r = &CONCAT(_name, _r), \
/Zephyr-latest/include/zephyr/rtio/
Drtio.h837 static struct rtio_iodev_sqe CONCAT(_sqe_pool_, name)[sz]; \
842 .pool = CONCAT(_sqe_pool_, name), \
847 static struct rtio_cqe CONCAT(_cqe_pool_, name)[sz]; \
852 .pool = CONCAT(_cqe_pool_, name), \
879 CONCAT(_block_pool_, name)[blk_cnt*WB_UP(blk_sz)]; \
881 CONCAT(_block_pool_, name), RTIO_DMEM)
885 (static K_SEM_DEFINE(CONCAT(_submit_sem_, name), 0, K_SEM_MAX_LIMIT))) \
887 (static K_SEM_DEFINE(CONCAT(_consume_sem_, name), 0, K_SEM_MAX_LIMIT))) \
889 IF_ENABLED(CONFIG_RTIO_SUBMIT_SEM, (.submit_sem = &CONCAT(_submit_sem_, name),)) \
891 IF_ENABLED(CONFIG_RTIO_CONSUME_SEM, (.consume_sem = &CONCAT(_consume_sem_, name),))\
[all …]
/Zephyr-latest/doc/hardware/peripherals/sensor/
Dmultiple_temp_polling.c12 #define TEMP_ALIAS(id) DT_ALIAS(CONCAT(temp, id))
13 #define TEMP_IODEV_SYM(id) CONCAT(temp_iodev, id)
Daccel_stream.c12 #define ACCEL_ALIAS(id) DT_ALIAS(CONCAT(accel, id))
13 #define ACCEL_IODEV_SYM(id) CONCAT(accel_iodev, id)
/Zephyr-latest/include/zephyr/drivers/firmware/scmi/
Dutil.h29 #define SCMI_PROTOCOL_NAME(proto) CONCAT(scmi_protocol_, proto)
53 #define SCMI_TRANSPORT_CHAN_NAME(proto, idx) CONCAT(scmi_channel_, proto, _, idx)
/Zephyr-latest/drivers/gpio/
Dgpio_renesas_ra_ioport.c258 #define GPIO_RA_PINS_NAME(n, p, i) CONCAT(DT_STRING_TOKEN_BY_IDX(n, p, i), _pins)
261 const uint8_t CONCAT(n, ___pins##i[]) = { \
267 .pins = CONCAT(n, ___pins##i), \
268 .num = ARRAY_SIZE(CONCAT(n, ___pins##i)), \
/Zephyr-latest/include/zephyr/drivers/ethernet/
Deth_nxp_enet_qos.h25 #define _ENET_QOS_REG_MASK(reg, field) CONCAT(ENET_QOS_NAME, _ENET_QOS_REG_FIELD(reg, field))
/Zephyr-latest/tests/unit/util/
Dmain.c790 zassert_equal(CONCAT(CAT_PART1), 1); in ZTEST()
791 zassert_equal(CONCAT(CAT_PART1, CAT_PART2), 12); in ZTEST()
792 zassert_equal(CONCAT(CAT_PART1, CAT_PART2, CAT_PART3), 123); in ZTEST()
793 zassert_equal(CONCAT(CAT_PART1, CAT_PART2, CAT_PART3, CAT_PART4), 1234); in ZTEST()
794 zassert_equal(CONCAT(CAT_PART1, CAT_PART2, CAT_PART3, CAT_PART4, CAT_PART5), 12345); in ZTEST()
795 zassert_equal(CONCAT(CAT_PART1, CAT_PART2, CAT_PART3, CAT_PART4, CAT_PART5, CAT_PART6), in ZTEST()
797 zassert_equal(CONCAT(CAT_PART1, CAT_PART2, CAT_PART3, CAT_PART4, in ZTEST()
800 zassert_equal(CONCAT(CAT_PART1, CAT_PART2, CAT_PART3, CAT_PART4, in ZTEST()
804 zassert_equal(CONCAT(CAT_PART1, CONCAT(CAT_PART2, CAT_PART3)), 123); in ZTEST()
/Zephyr-latest/include/zephyr/posix/
Dunistd.h75 #define sysconf(x) (long)CONCAT(__z_posix_sysconf, x)
/Zephyr-latest/include/zephyr/
Dsw_isr_table.h71 #define Z_SW_ISR_TBL_KCONFIG_BY_ALVL(l) CONCAT(CONFIG_, CONCAT(Z_STR_L, l), _LVL_ISR_TBL_OFFSET)
/Zephyr-latest/drivers/firmware/scmi/
Dmailbox.h26 CONCAT(SCMI_TRANSPORT_CHAN_NAME(proto, idx), _, priv)
/Zephyr-latest/samples/sensor/dht_polling/src/
Dmain.c34 COND_CODE_1(DT_NODE_EXISTS(DHT_ALIAS(i)), (CONCAT(&dht_iodev, i)), (NULL))
/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_engine.h64 CONCAT(LWM2M, prio, init_function)) = {.f = init_function}
/Zephyr-latest/modules/hal_silabs/simplicity_sdk/config/
Dsl_clock_manager_tree_config.h41 CONCAT(CMU_SYSCLKCTRL_HCLKPRESC_DIV, DT_PROP(DT_NODELABEL(hclk), clock_div))
44 CONCAT(CMU_SYSCLKCTRL_PCLKPRESC_DIV, DT_PROP(DT_NODELABEL(pclk), clock_div))
81 CONCAT(CMU_TRACECLKCTRL_PRESC_DIV, DT_PROP(DT_NODELABEL(traceclk), clock_div))
/Zephyr-latest/drivers/timer/
Dsilabs_sleeptimer_timer.c127 CONCAT(DT_STRING_UPPER_TOKEN_BY_IDX(DT_RTC, interrupt_names, 0), _IRQHandler), in sleeptimer_init()
/Zephyr-latest/drivers/sensor/st/iis328dq/
Diis328dq.c442 inst, CONCAT(int, DT_INST_PROP(inst, drdy_int_pad), _gpios)), \
446 inst, CONCAT(int, DT_INST_PROP(inst, threshold_int_pad), \
/Zephyr-latest/drivers/interrupt_controller/
Dintc_rv32m1_intmux.c224 IRQ_PARENT_ENTRY_DEFINE(CONCAT(DT_DRV_COMPAT, _child_, DT_NODE_CHILD_IDX(node_id)), NULL, \
/Zephyr-latest/samples/sensor/accel_polling/src/
Dmain.c27 #define ACCEL_IODEV_SYM(id) CONCAT(accel_iodev, id)
/Zephyr-latest/soc/st/stm32/common/
Dstm32_wkup_pins.c110 #define PWR_STM32_WKUP_PIN_LOOKUP_MEMBER(i, _) CONCAT(LL_PWR_WAKEUP_PIN, UTIL_INC(i))
/Zephyr-latest/include/zephyr/posix/sys/
Dsysconf.h297 #define sysconf(x) (long)CONCAT(__z_posix_sysconf, x)
/Zephyr-latest/lib/posix/options/
Dsysconf.c15 #define z_sysconf(x) (long)CONCAT(__z_posix_sysconf, x)

12