Home
last modified time | relevance | path

Searched refs:words (Results 1 – 25 of 63) sorted by relevance

123

/Zephyr-Core-3.7.0/drivers/sensor/bosch/bmi323/
Dbmi323_spi.c11 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()
Dbmi323.h180 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,
Dbmi323.c68 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/
Daes.c99 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()
Dctr_prng.c434 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/
DKconfig.ambiq25 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/
Dsize_calc.py229 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/
Dwest-completion.bash126 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/
Dudc_stm32.c451 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/
Duf2conv.py215 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/
DKconfig.ambiq28 int "DMA Transfer Control Buffer size in words."
32 DMA Transfer Control Buffer size in words
/Zephyr-Core-3.7.0/drivers/flash/
DKconfig.nrf_mram18 Note that MRAM words are auto-erased when written to, but writing to a
DKconfig.nrf_rram30 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.gitlint32 # 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/
Dring_buffers.rst43 * 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/
Drelay_vector_table.ld21 * exception entries in the vector table. The minimum alignment of 32 words
/Zephyr-Core-3.7.0/scripts/west_commands/
Dsign.py91 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/
Dztest_mock.c86 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/
Dsafety_requirements.rst32 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/
Dindex.rst13 In other words, the Arduino UNO click will generally be used by other
/Zephyr-Core-3.7.0/drivers/timer/
DKconfig.nrf_grtc50 too early. In other words, applying SYSCOUNTER sleep state for less than
/Zephyr-Core-3.7.0/arch/arm/core/
Dvector_table.ld30 * exception entries in the vector table. The minimum alignment of 32 words
/Zephyr-Core-3.7.0/doc/security/
Dsecurity-citations.rst33 .. [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels",
/Zephyr-Core-3.7.0/samples/boards/reel_board/mesh_badge/
DREADME.rst26 #. Enter your name (or any other arbitrary text). Multiple words
/Zephyr-Core-3.7.0/include/zephyr/arch/x86/ia32/
Dlinker.ld505 * 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

123