/Zephyr-Core-3.7.0/drivers/sensor/bosch/bmi323/ |
D | bmi323_spi.c | 11 static int bosch_bmi323_spi_read_words(const void *context, uint8_t offset, uint16_t *words, in bosch_bmi323_spi_read_words() argument 33 receive_buffers[1].buf = words; in bosch_bmi323_spi_read_words() 46 static int bosch_bmi323_spi_write_words(const void *context, uint8_t offset, uint16_t *words, in bosch_bmi323_spi_write_words() argument 59 transmit_buffers[1].buf = words; in bosch_bmi323_spi_write_words()
|
D | bmi323.h | 180 int (*read_words)(const void *context, uint8_t offset, uint16_t *words, 184 int (*write_words)(const void *context, uint8_t offset, uint16_t *words,
|
D | bmi323.c | 68 static int bosch_bmi323_bus_read_words(const struct device *dev, uint8_t offset, uint16_t *words, in bosch_bmi323_bus_read_words() argument 75 return bus->api->read_words(bus->context, offset, words, words_count); in bosch_bmi323_bus_read_words() 78 static int bosch_bmi323_bus_write_words(const struct device *dev, uint8_t offset, uint16_t *words, in bosch_bmi323_bus_write_words() argument 85 return bus->api->write_words(bus->context, offset, words, words_count); in bosch_bmi323_bus_write_words()
|
/Zephyr-Core-3.7.0/tests/crypto/tinycrypt/src/ |
D | aes.c | 99 result = check_result(1, expected.words, in test_aes_key_chain() 100 sizeof(expected.words), in test_aes_key_chain() 101 s.words, sizeof(s.words), 1); in test_aes_key_chain()
|
D | ctr_prng.c | 434 size_t words; in ZTEST() local 451 words = sizeof(ctx.key.words) / sizeof(ctx.key.words[0]); in ZTEST() 452 for (i = 0; i < words; i++) { in ZTEST() 455 zassert_false(ctx.key.words[i], in ZTEST()
|
/Zephyr-Core-3.7.0/drivers/i2c/ |
D | Kconfig.ambiq | 25 int "DMA Transfer Control Buffer size in words." 28 DMA Transfer Control Buffer size in words
|
/Zephyr-Core-3.7.0/scripts/pylib/twister/twisterlib/ |
D | size_calc.py | 229 words = line.split() 231 if not words: # Skip lines that are too short 234 index = words[0] 238 name = words[1] # Skip lines with section names 245 size = int(words[2], 16) 249 load_addr = int(words[4], 16) 250 virt_addr = int(words[3], 16)
|
/Zephyr-Core-3.7.0/scripts/west_commands/completion/ |
D | west-completion.bash | 126 words) 127 words=("${words_[@]}") 316 key=${words[$cword - 2]} # key=value case 324 [[ ${words[$glob_pos]} == @($glob) ]] && echo "$key" 337 case ${words[$counter]} in 1194 local cur words cword prev 1195 _get_comp_words_by_ref -n : cur words cword prev
|
/Zephyr-Core-3.7.0/drivers/usb/udc/ |
D | udc_stm32.c | 451 int words; in udc_stm32_mem_init() local 464 words = MAX(0x40, cfg->ep_mps / 4); in udc_stm32_mem_init() 465 HAL_PCDEx_SetRxFiFo(&priv->pcd, words); in udc_stm32_mem_init() 466 priv->occupied_mem = words * 4; in udc_stm32_mem_init() 484 unsigned int words; in udc_stm32_ep_mem_config() local 490 words = MIN(ep->mps, cfg->ep_mps) / 4; in udc_stm32_ep_mem_config() 491 words = (words <= 64) ? words * 2 : words; in udc_stm32_ep_mem_config() 494 if (priv->occupied_mem >= (words * 4)) { in udc_stm32_ep_mem_config() 495 priv->occupied_mem -= (words * 4); in udc_stm32_ep_mem_config() 501 if (cfg->dram_size - priv->occupied_mem < words * 4) { in udc_stm32_ep_mem_config() [all …]
|
/Zephyr-Core-3.7.0/scripts/build/ |
D | uf2conv.py | 215 words = re.split(r'\s+', line) 216 if len(words) >= 3 and words[1] == "2" and words[2] == "FAT": 217 drives.append(words[0])
|
/Zephyr-Core-3.7.0/drivers/spi/ |
D | Kconfig.ambiq | 28 int "DMA Transfer Control Buffer size in words." 32 DMA Transfer Control Buffer size in words
|
/Zephyr-Core-3.7.0/drivers/flash/ |
D | Kconfig.nrf_mram | 18 Note that MRAM words are auto-erased when written to, but writing to a
|
D | Kconfig.nrf_rram | 30 Number of 128-bit words. 31 Maximum buffer size can be configured to the value of 32 (128-bit words).
|
/Zephyr-Core-3.7.0/ |
D | .gitlint | 32 # Comma-separated list of words that should not occur in the title. Matching is case 35 words=wip
|
/Zephyr-Core-3.7.0/doc/kernel/data_structures/ |
D | ring_buffers.rst | 43 * A **data buffer** of bytes or 32-bit words. The data buffer contains the raw 44 bytes or 32-bit words that have been added to the ring buffer but not yet 47 * A **data buffer size**, measured in bytes or 32-bit words. This governs 58 buffer passed change (either bytes or words) depending on how the ring 64 initialize a buffer with a given count of 32 bit words. 65 :c:macro:`RING_BUF_ITEM_SIZEOF` will compute the size in 32-bit words 94 are in units of 32 bit words and all memory is assumed to be aligned 105 which returns the number of free bytes or free 32-bit item words respectively, 151 A ring buffer **data item** is an array of 32-bit words from 0 to 1020 bytes 207 is capable of holding 64 words of data and metadata information.
|
/Zephyr-Core-3.7.0/arch/arm/core/cortex_m/ |
D | relay_vector_table.ld | 21 * exception entries in the vector table. The minimum alignment of 32 words
|
/Zephyr-Core-3.7.0/scripts/west_commands/ |
D | sign.py | 91 words = config_get_words(west_config, section_key) 92 if words is None: 94 if len(words) != 1: 96 return words[0]
|
/Zephyr-Core-3.7.0/subsys/testsuite/ztest/src/ |
D | ztest_mock.c | 86 const size_t words = DIV_ROUND_UP(bits, BITS_PER_UL); in sys_bitfield_find_first_clear() local 94 for (cnt = 0; cnt < words; cnt++) { in sys_bitfield_find_first_clear()
|
/Zephyr-Core-3.7.0/doc/safety/ |
D | safety_requirements.rst | 32 Maintain consistency across all requirements. The language and choice of words shall be consistent. 44 In other words a person writing these requirements usually has some knowledge of the Zephyr RTOS
|
/Zephyr-Core-3.7.0/boards/shields/arduino_uno_click/doc/ |
D | index.rst | 13 In other words, the Arduino UNO click will generally be used by other
|
/Zephyr-Core-3.7.0/drivers/timer/ |
D | Kconfig.nrf_grtc | 50 too early. In other words, applying SYSCOUNTER sleep state for less than
|
/Zephyr-Core-3.7.0/arch/arm/core/ |
D | vector_table.ld | 30 * exception entries in the vector table. The minimum alignment of 32 words
|
/Zephyr-Core-3.7.0/doc/security/ |
D | security-citations.rst | 33 .. [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels",
|
/Zephyr-Core-3.7.0/samples/boards/reel_board/mesh_badge/ |
D | README.rst | 26 #. Enter your name (or any other arbitrary text). Multiple words
|
/Zephyr-Core-3.7.0/include/zephyr/arch/x86/ia32/ |
D | linker.ld | 505 * As memory is cleared in words only, it is simpler to ensure the BSS 580 * Round up number of words for DATA section to ensure that XIP copies the 581 * entire data section. XIP copy is done in words only, so there may be up
|