/Zephyr-latest/drivers/spi/ |
D | spi_oc_simple.c | 225 .base = DT_INST_REG_ADDR_BY_NAME(inst, control), \
|
/Zephyr-latest/dts/riscv/openisa/ |
D | rv32m1_zero_riscy.dtsi | 26 * these base addresses contain the Arm core vector tables if
|
D | rv32m1_ri5cy.dtsi | 26 * these base addresses contain the Arm core vector tables if
|
/Zephyr-latest/subsys/debug/coredump/ |
D | coredump_core.c | 94 if ((thread->base.user_options & K_USER) == K_USER) { in dump_thread()
|
/Zephyr-latest/drivers/flash/ |
D | Kconfig.nrf_rram | 67 to the flash erase and write operations timeout. The base for
|
/Zephyr-latest/drivers/i2c/ |
D | i2c_andes_atciic100.h | 31 ((const struct i2c_atciic100_config * const)(dev)->config)->base
|
/Zephyr-latest/subsys/mgmt/mcumgr/mgmt/ |
D | Kconfig | 17 this enables the base notification functionality but itself does not enable any
|
/Zephyr-latest/cmake/ |
D | cfb.cmake | 16 --zephyr-base ${ZEPHYR_BASE}
|
/Zephyr-latest/cmake/linker/ |
D | linker_flags_template.cmake | 7 set_property(TARGET linker PROPERTY base)
|
/Zephyr-latest/arch/arc/core/ |
D | fault.c | 66 if ((thread->base.user_options & K_USER) != 0) { in z_check_thread_stack_fail()
|
/Zephyr-latest/.github/ISSUE_TEMPLATE/ |
D | 001_bug_report.md | 15 This issue list is only for bugs in the main Zephyr code base
|
/Zephyr-latest/kernel/ |
D | queue.c | 367 (ret != 0) ? NULL : _current->base.swap_data); in z_impl_k_queue_get() 369 return (ret != 0) ? NULL : _current->base.swap_data; in z_impl_k_queue_get()
|
/Zephyr-latest/drivers/adc/ |
D | adc_nxp_s32_adc_sar.c | 26 ADC_Type *base; member 440 .base = (ADC_Type *)DT_INST_REG_ADDR(n), \
|
/Zephyr-latest/drivers/pcie/controller/ |
D | pcie_brcmstb.c | 403 static void pcie_brcmstb_mdio_write(mm_reg_t base, uint8_t port, uint8_t regad, uint16_t wrdata) in pcie_brcmstb_mdio_write() argument 406 base + PCIE_RC_DL_MDIO_ADDR); in pcie_brcmstb_mdio_write() 407 sys_write32(MDIO_DATA_DONE_MASK | wrdata, base + PCIE_RC_DL_MDIO_WR_DATA); in pcie_brcmstb_mdio_write()
|
/Zephyr-latest/drivers/usb/udc/ |
D | udc_mcux_ehci.c | 44 uintptr_t base; member 712 LOG_DBG("Initialized USB controller %x", (uint32_t)config->base); in udc_mcux_init() 753 if (usb_base_addrs[i] == config->base) { in udc_mcux_get_hal_driver_id() 895 .base = DT_INST_REG_ADDR(n), \
|
/Zephyr-latest/tests/bsim/bluetooth/audio/src/ |
D | cap_acceptor_test.c | 139 static void base_recv_cb(struct bt_bap_broadcast_sink *sink, const struct bt_bap_base *base, in base_recv_cb() argument 150 ret = bt_bap_base_get_subgroup_count(base); in base_recv_cb() 163 ret = bt_bap_base_foreach_subgroup(base, valid_subgroup_metadata_cb, NULL); in base_recv_cb() 169 ret = bt_bap_base_get_bis_indexes(base, &base_bis_index_bitfield); in base_recv_cb()
|
/Zephyr-latest/drivers/clock_control/ |
D | clock_control_litex.c | 1235 static uint32_t litex_clk_pow(uint32_t base, uint32_t exp) in litex_clk_pow() argument 1240 ret *= base; in litex_clk_pow() 1678 lcko->base = ldev->base; in litex_clk_init_clkouts() 1749 ldev->base = (uint32_t *)DRP_BASE; in litex_clk_init() 1750 if (ldev->base == NULL) { in litex_clk_init() 1786 .base = (uint32_t *)DRP_BASE,
|
/Zephyr-latest/boards/arm/mps2/ |
D | mps2_an521_cpu1.dts | 122 /* This ram memory region's base address is chosen to avoid
|
/Zephyr-latest/arch/arm/core/cortex_m/tz/ |
D | Kconfig | 41 hex "ARM Non-Secure Callable Region base address"
|
/Zephyr-latest/boards/renesas/rcar_spider_s4/doc/ |
D | rcar_spider_a55.rst | 32 * 100base EtherAVB x 1 channel;
|
/Zephyr-latest/drivers/audio/mic_privacy/intel/ |
D | mic_privacy.c | 226 .base = DT_INST_REG_ADDR(inst), \
|
/Zephyr-latest/scripts/west_commands/completion/ |
D | west-completion.fish | 103 case '-z' '--zephyr-base' 141 if test \("$tokens[$idx]" = "-z"\) -o \("$tokens[$idx]" = "--zephyr-base"\) 343 … --zephyr-base; or __zephyr_west_is_last_token -z --zephyr-base" -o z -l zephyr-base -xa "(__zephy… 510 …m sdk; and __fish_seen_subcommand_from install" -o b -l install-base -d "SDK isntall base director…
|
/Zephyr-latest/doc/connectivity/networking/ |
D | eth_bridge_native_sim_setup.rst | 122 IPv6 base reachable time : 30000 150 IPv6 base reachable time : 30000
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | core.py | 209 base = 16 if value.startswith('0x') else 10 210 self.options[match.group('option')] = int(value, base=base)
|
/Zephyr-latest/subsys/net/ip/ |
D | utils.c | 80 char *net_byte_to_hex(char *ptr, uint8_t byte, char base, bool pad) in net_byte_to_hex() argument 86 *ptr++ = (high < 10) ? (char) (high + '0') : (char) (high - 10 + base); in net_byte_to_hex() 89 *ptr++ = (low < 10) ? (char) (low + '0') : (char) (low - 10 + base); in net_byte_to_hex()
|