Home
last modified time | relevance | path

Searched refs:dword (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/doc/services/storage/disk/
Dnvme.rst70 NVMe specifications mandate the data buffer to be placed in a dword (4 bytes) aligned address.
76 :c:func:`disk_access_read` and :c:func:`disk_access_write` are dword aligned.
/Zephyr-latest/drivers/flash/
Dflash_sam.c245 static void sam_flash_write_dword_to_latch_buffer(off_t offset, uint32_t dword) in sam_flash_write_dword_to_latch_buffer() argument
247 *((uint32_t *)offset) = dword; in sam_flash_write_dword_to_latch_buffer()
/Zephyr-latest/subsys/debug/
Dmipi_stp_decoder.c590 static uint64_t swap64(uint64_t dword) in swap64() argument
592 uint32_t l = (uint32_t)dword; in swap64()
593 uint32_t u = (uint32_t)(dword >> 32); in swap64()