/Zephyr-latest/cmake/compiler/gcc/ |
D | target_riscv.cmake | 7 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/ |
D | rtio.h | 39 RTIO_DEFINE(CONCAT(_name, _r), _sq_sz, _cq_sz); \ 41 .r = &CONCAT(_name, _r), \
|
/Zephyr-latest/soc/nordic/ |
D | sysbuild.cmake | 18 string(CONCAT launcher_board ${BOARD} "/" ${launcher_soc} "/" ${launcher_core}) 28 string(CONCAT launcher_snippet "nordic-" ${launcher_vpr})
|
/Zephyr-latest/include/zephyr/drivers/i2c/ |
D | rtio.h | 40 RTIO_DEFINE(CONCAT(_name, _r), _sq_sz, _cq_sz); \ 42 .r = &CONCAT(_name, _r), \
|
/Zephyr-latest/include/zephyr/drivers/i3c/ |
D | rtio.h | 41 RTIO_DEFINE(CONCAT(_name, _r), _sq_sz, _cq_sz); \ 43 .r = &CONCAT(_name, _r), \
|
/Zephyr-latest/include/zephyr/rtio/ |
D | rtio.h | 837 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/ |
D | multiple_temp_polling.c | 12 #define TEMP_ALIAS(id) DT_ALIAS(CONCAT(temp, id)) 13 #define TEMP_IODEV_SYM(id) CONCAT(temp_iodev, id)
|
D | accel_stream.c | 12 #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/ |
D | util.h | 29 #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/ |
D | gpio_renesas_ra_ioport.c | 258 #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/ |
D | eth_nxp_enet_qos.h | 25 #define _ENET_QOS_REG_MASK(reg, field) CONCAT(ENET_QOS_NAME, _ENET_QOS_REG_FIELD(reg, field))
|
/Zephyr-latest/tests/unit/util/ |
D | main.c | 790 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/ |
D | unistd.h | 75 #define sysconf(x) (long)CONCAT(__z_posix_sysconf, x)
|
/Zephyr-latest/include/zephyr/ |
D | sw_isr_table.h | 71 #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/ |
D | mailbox.h | 26 CONCAT(SCMI_TRANSPORT_CHAN_NAME(proto, idx), _, priv)
|
/Zephyr-latest/samples/sensor/dht_polling/src/ |
D | main.c | 34 COND_CODE_1(DT_NODE_EXISTS(DHT_ALIAS(i)), (CONCAT(&dht_iodev, i)), (NULL))
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | lwm2m_engine.h | 64 CONCAT(LWM2M, prio, init_function)) = {.f = init_function}
|
/Zephyr-latest/modules/hal_silabs/simplicity_sdk/config/ |
D | sl_clock_manager_tree_config.h | 41 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/ |
D | silabs_sleeptimer_timer.c | 127 CONCAT(DT_STRING_UPPER_TOKEN_BY_IDX(DT_RTC, interrupt_names, 0), _IRQHandler), in sleeptimer_init()
|
/Zephyr-latest/drivers/sensor/st/iis328dq/ |
D | iis328dq.c | 442 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/ |
D | intc_rv32m1_intmux.c | 224 IRQ_PARENT_ENTRY_DEFINE(CONCAT(DT_DRV_COMPAT, _child_, DT_NODE_CHILD_IDX(node_id)), NULL, \
|
/Zephyr-latest/samples/sensor/accel_polling/src/ |
D | main.c | 27 #define ACCEL_IODEV_SYM(id) CONCAT(accel_iodev, id)
|
/Zephyr-latest/soc/st/stm32/common/ |
D | stm32_wkup_pins.c | 110 #define PWR_STM32_WKUP_PIN_LOOKUP_MEMBER(i, _) CONCAT(LL_PWR_WAKEUP_PIN, UTIL_INC(i))
|
/Zephyr-latest/include/zephyr/posix/sys/ |
D | sysconf.h | 297 #define sysconf(x) (long)CONCAT(__z_posix_sysconf, x)
|
/Zephyr-latest/lib/posix/options/ |
D | sysconf.c | 15 #define z_sysconf(x) (long)CONCAT(__z_posix_sysconf, x)
|